Centos

CentOS 與 nodeworx

  • May 17, 2018

我有一台帶有 interworx 的伺服器 CentOS 6.9,但我無法安裝libstdc++-static.

當我做sudo yum install -y libstdc++-static

返回:

沒有可用的軟體包 libstdc++-static。

我怎樣才能在不破壞任何東西的情況下安裝這個包?

對於 Centos 6.9,您需要安裝libstdc++-devel軟體包:

$ rpm -qpl libstdc++-devel-4.4.7-18.el6.x86_64.rpm | grep .a$
/usr/lib/gcc/x86_64-redhat-linux/4.4.4/libstdc++.a # (statically linked library)
/usr/lib/gcc/x86_64-redhat-linux/4.4.4/libsupc++.a # (statically linked library)

引用自:https://unix.stackexchange.com/questions/444338