c++ - 高版本的gcc编译的库能被低版本的gcc链接使用吗?
迷茫
迷茫 2017-04-17 13:37:44
0
1
1164

gcc4.9.3编译的库能被gcc4.8链接使用吗? 反过来呢? 低版本的编译器做成的库能被高版本编译器使用吗?

linux上面的包管理器安装的库,在我升级了gcc后依然可以使用,是不是编译器编译了库之后就和编译器没有关系了?只和平台上的运行库之类的有关了?

迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

reply all(1)
Peter_Zhu
  • Lower versions use higher version libraries

    如果库的二进制是兼容低版本,自然可以使用
    
  • Higher versions use lower version libraries

    一般来说都可以
    

    Yes, after the compiler compiles the library, it has nothing to do with the compiler. If you use a library compiled with a new version of gcc, it may be version incompatible with the system's own runtime library.

  • Check the version of libc/libc++ library

    `strings "/lib/libc.so.6" | grep LIBC`
    `strings "/lib/libstdc++.so.6" | grep LIBC`
    把库的路径换成你机器的路径即可
  • Check the version of the library required by the elf file

    `readelf -s ltrace  | grep -oP "GLIBC_[\d\.]*" | sort | uniq`
    把`-s`后面的文件换成你的程序
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!