64位linux下编译32位程序的错误“error: gnu/stubs-32.h: No such file or directory”

解决方法:

yum -y install glibc-devel.i686

参考 http://blog.sina.com.cn/s/blog_6797a6700101eta5.html 的第二条评论。


如果有 “/usr/lib/ld: cannot find -lc”这样的错误,可能是找不到静态库 libc.a,(找不到到动态库 libc.so的可能性很小)。

解决方法:

yum install glic-static (64位)

yum install glic-static.i686 (32位)

参考 http://blog.sina.com.cn/s/blog_602f877001011t8y.html。





你可能感兴趣的:(编程,linux)