From b3612264a92d093e37fa925ad1375157c0d6bb31 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Tue, 2 Aug 2022 00:58:02 +0700 Subject: [PATCH] Use cmake properties for symbol visibility and PIC. --- CMakeLists.txt | 22 ---------------------- cmake/z3_add_component.cmake | 6 ++++++ 2 files changed, 6 insertions(+), 22 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 514eebebb..e3fb1860b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -345,14 +345,6 @@ endif() option(Z3_BUILD_LIBZ3_SHARED "Build libz3 as a shared library if true, otherwise build a static library" ON) -################################################################################ -# Symbol visibility -################################################################################ -if (NOT MSVC) - z3_add_cxx_flag("-fvisibility=hidden" REQUIRED) - z3_add_cxx_flag("-fvisibility-inlines-hidden" REQUIRED) -endif() - ################################################################################ # Tracing ################################################################################ @@ -364,20 +356,6 @@ else() list(APPEND Z3_COMPONENT_CXX_DEFINES $<$:_TRACE>) endif() -################################################################################ -# Position independent code -################################################################################ -# This is required because code built in the components will end up in a shared -# library. - -# Avoid adding -fPIC compiler switch if we compile with MSVC (which does not -# support the flag) or if we target Windows, which generally does not use -# position independent code for native code shared libraries (DLLs). -if (NOT (MSVC OR MINGW OR WIN32)) - z3_add_cxx_flag("-fPIC" REQUIRED) -endif() - - ################################################################################ # Link time optimization ################################################################################ diff --git a/cmake/z3_add_component.cmake b/cmake/z3_add_component.cmake index c4b2dfbfe..47ecb04aa 100644 --- a/cmake/z3_add_component.cmake +++ b/cmake/z3_add_component.cmake @@ -206,6 +206,12 @@ macro(z3_add_component component_name) foreach (flag ${Z3_COMPONENT_CXX_FLAGS}) target_compile_options(${component_name} PRIVATE ${flag}) endforeach() + set_target_properties(${component_name} PROPERTIES + # Position independent code needed in shared libraries + POSITION_INDEPENDENT_CODE ON + # Symbol visibility + CXX_VISIBILITY_PRESET hidden + VISIBILITY_INLINES_HIDDEN ON) # It's unfortunate that we have to manage dependencies ourselves. #