golang调用c++代码出现undefined reference to symbol ‘XX@@GLIBC_2.2.5‘

  • Post author:
  • Post category:golang


golang调用C++代码时,部分实现的底层函数,floor, log,exp等出现异常,如下

/usr/bin/ld: xxxxx.a: undefined reference to symbol 'floor@@GLIBC_2.2.5'
/usr/bin/ld: note: 'floor@@GLIBC_2.2.5' is defined in DSO /lib64/libm.so.6 so try adding it to the linker command line
/lib64/libm.so.6: could not read symbols: Invalid operation
collect2: error: ld returned 1 exit status

就是编译时没有找到libm.so这个链接库,make时生成.a库正常,但调用就不正确,这是因为在golang调用中未加入库链接

则在LDFLAGS行加上 -lm ,即实现将libm.so库链接,如下

// #cgo LDFLAGS: -lstdc++ -L${SRCDIR}/<填头文件包> -lfoo -lssl -lcrypto -ldl -lz -lm

如上:

-L表示头文件所在文件夹

-l表示静态库名



版权声明:本文为Jum_Summer原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。