ChatGPT解决这个技术问题 Extra ChatGPT

What is the idiomatic way in CMAKE to add the -fPIC compiler option?

I've come across at least 3 ways to do this and I'm wondering which is the idiomatic way. This needs to be done almost universally to any static library. I'm surprised that the Makefile generator in CMake doesn't automatically add this to static libraries. (unless I'm missing something?)

target_compile_options(myLib PRIVATE -fPIC)

add_compile_options(-fPIC)

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

I believe there might also be other variations. (please edit my question if you find one)

If you happen to know the answer to this question, do you also know if there is a way to cause a 3rd party CMake project to be compiled with this flag without modifying its CMakeLists.txt file? I have run across static libraries missing that flag. It causes problems when compiling a static library into a dynamic library.

You get:

relocation R_X86_64_32 against `.rodata' can not be used when making a shared object; recompile with -fPIC
this set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fpic") worked for me.
^ Do not do that. Use the POSITION_INDEPENDENT_CODE property, as suggested in the top answer.

A
Alex Reinking

You can set the position independent code property on all targets:

set(CMAKE_POSITION_INDEPENDENT_CODE ON)

or in a specific library:

add_library(lib1 lib1.cpp)
set_property(TARGET lib1 PROPERTY POSITION_INDEPENDENT_CODE ON)

Reference: CMAKE_POSITION_INDEPENDENT_CODE cmake build system


The second method appears to be the right way to add it to a 3rd party lib as well. Perfect.
@010110110101 I don't know if it works, but you can try specifying, at ExternalProject_Add with option CMAKE_CACHE_ARGS "-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=true"
The CMAKE_POSITION_INDEPENDENT_CODE property is set by default for SHARED targets, there is no need to set it explicitly.
@Carbon if you're using the set command (the first version above), then no. If you're using the second version, it's per library, not per directory.
There is relatively undocumented behavior for CMAKE_POSITION_INDEPENDENT_CODE described in this post. This may have undesired consequences, particularly for Qt executables requiring fPIC, not fPIE. So target_compile_options() may be the best option in some cases.
s
scai

You can also pass the following command line option to cmake (in case this is not your cmake project and/or you can't or don't want to modify the project files):

-DCMAKE_POSITION_INDEPENDENT_CODE=ON

This is a good answer, but sadly many projects set this variable unconditionally so YMMV doing this