系统相关
首页 > 系统相关> > c – Linux上的共享库和-fPIC错误

c – Linux上的共享库和-fPIC错误

作者:互联网

我正在尝试使用使用Cmake创建的Makefile在Linux中编译共享库,但是运行make我获得以下错误:

   Linking CXX shared library libcpp-lib.so
   /usr/bin/ld: /home/davide/Desktop/boost_1_55_0/stage/lib/libboost_system.a(error_code.o): relocation R_X86_64_32 against .rodata.str1.1 can  not be used when making a shared object; recompile with -fPIC
   /home/davide/Desktop/boost_1_55_0/stage/lib/libboost_system.a: could not read symbols:   Bad value
   collect2: ld returned 1 exit status
   make[2]: *** [libcpp-lib.so] Error 1
   make[1]: *** [CMakeFiles/cpp-lib.dir/all] Error 2
   make: *** [all] Error 2

我在CMakeLists.txt中提供以下命令,以便说我想要一个共享(.so)库:

add_library(cpp-lib SHARED ${CPP_FILES})

为了避免上面显示的-fPIC错误,还需要指定什么?

非常感谢提前

解决方法:

需要使用-fPIC编译boost库:
请看看:How to compile static library with -fPIC from boost.python

尝试在项目中通过cmake by添加编译器标志:

set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC")
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")

标签:c-2,linux,shared-libraries,cmake,fpic
来源: https://codeday.me/bug/20190517/1118904.html