在编译的时候偶尔遇到错误/usr/bin/ld: cannot find -lc,如下:

编译报错: /usr/bin/ld: cannot find -lc_cannot


查看是没有安装静态库glibc-static而导致的,安装在编译即可:

安装方法:

yum install glibc-static -y

然后在编译就不报错了:

编译报错: /usr/bin/ld: cannot find -lc_cannot_02