search

Home  >  Q&A  >  body text

c++ - 高版本的gcc编译的库能被低版本的gcc链接使用吗?

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

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

迷茫迷茫2803 days ago1218

reply all(1)I'll reply

  • 天蓬老师

    天蓬老师2017-04-17 13:39:44

    • 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`后面的文件换成你的程序

    reply
    0
  • Cancelreply