如何在64位linux中链接静态库和cmake?

时间:2011-09-07 04:59:01

标签: linux 64-bit cmake static-libraries static-linking

我在linux中使用cmake构建我的项目。

我使用

链接一些静态库
set(BUILD_SHARED_LIBS FALSE)
set(CMAKE_EXE_LINKER_FLAGS "-static")

target_link_libraries(MyProject /usr/lib/libImlib2.a)

它在32位linux(在我的情况下,Ubuntu)中完美运行,而不是在64位Ubuntu中

出现此错误消息。

/usr/bin/ld: /usr/lib64/libImlib2.a(api.o) : relocation R_X86_64_32 againts '.rodata.str1.1' can not be used when making a shared object; recompile with -fPIC
/usr/lib64/libImlib2.a : could not read symbols: Bad value
collect2:ld returned 1 exit status

我发现的一些文档说它是关于64位linux的问题,需要设置标志。

所以我添加

set(CMAKE_CXX_FLAGS_DEBUG "-fPIC")
set(CMAKE_CXX_FLAGS_RELEASE "-fPIC")

但没有改变。

你能就我应该做些什么给我一些建议吗?

非常感谢你阅读这个问题。

2 个答案:

答案 0 :(得分:2)

您需要自己使用Imlib2构建-fPIC(实际上所有共享库)。请查看this article,了解为何会发生这种情况。

答案 1 :(得分:1)

需要使用-fPIC重新编译x86_64体系结构的问题的修复程序。 有关该信息的更多信息,请访问:

http://www.technovelty.org/c/position-independent-code-and-x86-64-libraries.html https://en.wikipedia.org/wiki/Position-independent_code

将以下行添加到主CMakeLists.txt

IF(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64") ADD_DEFINITIONS(-fPIC) ENDIF()