使用别人提供的静态库编译可执行文件,出错:


/usr/bin/x86_64-linux-gnu-ld: libxxx.a(event.o): relocation R_X86_64_32 against `.rodata.str1.1' can not be used when making a PIE object; recompile with -fPIC

经分析,原因可能是, 静态库式低版本gcc编译的。默认没有使用 -fPIC。而我的gcc是新版本,默认开启了。

静态库是别人提供的,不好让人家重新编译。

解决方法。

链接时 加上  -no-pie

SET( CMAKE_EXE_LINKER_FLAGS " -no-pie")

就可以了

Logo

更多推荐