首页 > 代码库 > linux问题收集

linux问题收集

Problem:

/usr/bin/ld: cannot find -lz

Solution:

yum install zlib-static

Problem:

/usr/bin/ld: cannot find -lpthread

Solution:

yum install glibc-static

Problem:

/usr/bin/ld: cannot find -lstdc++

Solution:

yum install libstdc++-static

If you are using RHEL7, these are in the rhel-x86_64-server-optional-7 channel.


本文出自 “我的运维时光” 博客,请务必保留此出处http://aaronsa.blog.51cto.com/5157083/1908454

linux问题收集