mirror of
https://github.com/curl/curl.git
synced 2024-11-21 01:16:58 +08:00
cmake: allow SHARE_LIB_OBJECT=ON
on all platforms
2ebc74c36a
#11546 introduced sharing
libcurl objects for shared and static targets.
The above automatically enabled for Windows builds, with an option to
disable with `SHARE_LIB_OBJECT=OFF`.
This patch extend this feature to all platforms as a manual option.
You can enable it by setting `SHARE_LIB_OBJECT=ON`. Then shared objects
are built in PIC mode, meaning the static lib will also have PIC code.
[EXPERIMENTAL]
Closes #11627
This commit is contained in:
parent
fb722ec7e5
commit
fc9bfb1452
@ -108,13 +108,18 @@ if(WIN32 AND
|
||||
set(IMPORT_LIB_SUFFIX "_imp")
|
||||
endif()
|
||||
|
||||
# On supported platforms, do a single compilation pass for libcurl sources
|
||||
# and reuse these objects to generate both static and shared target.
|
||||
# This is possible where PIC is the default for both shared and static and
|
||||
# there is a way to tell the linker which libcurl symbols it should export
|
||||
# (vs. marking these symbols exportable at compile-time).
|
||||
if(WIN32 AND NOT DEFINED SHARE_LIB_OBJECT)
|
||||
# Whether to do a single compilation pass for libcurl sources and reuse these
|
||||
# objects to generate both static and shared target.
|
||||
if(NOT DEFINED SHARE_LIB_OBJECT)
|
||||
# Enable it by default on platforms where PIC is the default for both shared
|
||||
# and static and there is a way to tell the linker which libcurl symbols it
|
||||
# should export (vs. marking these symbols exportable at compile-time).
|
||||
if(WIN32)
|
||||
set(SHARE_LIB_OBJECT ON)
|
||||
else()
|
||||
# On other platforms, make it an option disabled by default
|
||||
set(SHARE_LIB_OBJECT OFF)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(SHARE_LIB_OBJECT)
|
||||
@ -123,7 +128,8 @@ if(SHARE_LIB_OBJECT)
|
||||
target_link_libraries(${LIB_OBJECT} PRIVATE ${CURL_LIBS})
|
||||
set_target_properties(${LIB_OBJECT} PROPERTIES
|
||||
COMPILE_DEFINITIONS "BUILDING_LIBCURL"
|
||||
INTERFACE_COMPILE_DEFINITIONS "CURL_STATICLIB")
|
||||
INTERFACE_COMPILE_DEFINITIONS "CURL_STATICLIB"
|
||||
POSITION_INDEPENDENT_CODE ON)
|
||||
if(HIDES_CURL_PRIVATE_SYMBOLS)
|
||||
set_target_properties(${LIB_OBJECT} PROPERTIES
|
||||
COMPILE_DEFINITIONS "CURL_HIDDEN_SYMBOLS"
|
||||
|
Loading…
Reference in New Issue
Block a user