gpt4 book ai didi

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

转载 作者:IT王子 更新时间:2023-10-29 00:31:34 25 4
gpt4 key购买 nike

我正在尝试使用由 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 错误,我还需要指定什么?

提前致谢

最佳答案

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

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

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

关于c++ - Linux 上的共享库和 -fPIC 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26549137/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com