Linux上的共享库和-fPIC错误

dav*_*ide 7 c++ linux cmake shared-libraries 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
Run Code Online (Sandbox Code Playgroud)

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

add_library(cpp-lib SHARED ${CPP_FILES})

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

非常感谢提前

sfr*_*hse 7

需要使用-fPIC编译boost库:请看一下:如何使用boost.python中的-fPIC编译静态库

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

set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC")
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
Run Code Online (Sandbox Code Playgroud)

  • 设置`CMAKE_POSITION_INDEPENDENT_CODE`或使用`POSITION_INDEPENDENT_CODE`目标属性是更好的方法,因为它是独立于编译器的.此外,`CMAKE _*_ FLAGS`操作不是很好,因为用户可能会在缓存文件中更改它 (9认同)