Skip to content

Commit fd9d1d2

Browse files
committedJul 16, 2023
cmake: Add platform-specific flags
1 parent dcaca5c commit fd9d1d2

File tree

3 files changed

+28
-5
lines changed

3 files changed

+28
-5
lines changed
 

‎CMakeLists.txt

+24-1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ set(CMAKE_CXX_EXTENSIONS OFF)
8080

8181
set(configure_warnings)
8282

83+
include(TryAppendLinkerFlag)
84+
8385
if(WIN32)
8486
#[=[
8587
This build system supports two ways to build binaries for Windows.
@@ -106,13 +108,32 @@ if(WIN32)
106108

107109
if(MINGW)
108110
add_compile_definitions(WIN32 _WINDOWS _MT)
111+
set(mingw_linker_flags "")
109112
# We require Windows 7 (NT 6.1) or later.
110-
add_link_options(-Wl,--major-subsystem-version,6 -Wl,--minor-subsystem-version,1)
113+
try_append_linker_flag(mingw_linker_flags "-Wl,--major-subsystem-version,6")
114+
try_append_linker_flag(mingw_linker_flags "-Wl,--minor-subsystem-version,1")
115+
separate_arguments(mingw_linker_flags)
116+
add_link_options(${mingw_linker_flags})
111117
endif()
112118
endif()
113119

120+
# Use 64-bit off_t on 32-bit Linux.
121+
if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SIZEOF_VOID_P EQUAL 4)
122+
# Ensure 64-bit offsets are used for filesystem accesses for 32-bit compilation.
123+
add_compile_definitions(_FILE_OFFSET_BITS=64)
124+
endif()
125+
114126
if(CMAKE_SYSTEM_NAME STREQUAL "Darwin")
115127
add_compile_definitions(MAC_OSX)
128+
# These flags are specific to ld64, and may cause issues with other linkers.
129+
# For example: GNU ld will interpret -dead_strip as -de and then try and use
130+
# "ad_strip" as the symbol for the entry point.
131+
set(macos_linker_flags "")
132+
try_append_linker_flag(macos_linker_flags "-Wl,-dead_strip")
133+
try_append_linker_flag(macos_linker_flags "-Wl,-dead_strip_dylibs")
134+
try_append_linker_flag(macos_linker_flags "-Wl,-headerpad_max_install_names")
135+
separate_arguments(macos_linker_flags)
136+
add_link_options(${macos_linker_flags})
116137
endif()
117138

118139
if(CMAKE_CROSSCOMPILING AND DEPENDS_ALLOW_HOST_PACKAGES)
@@ -200,6 +221,8 @@ message("Common compile options ................ ${common_compile_options}")
200221
get_directory_property(common_link_options LINK_OPTIONS)
201222
string(REPLACE ";" " " common_link_options "${common_link_options}")
202223
message("Common link options ................... ${common_link_options}")
224+
message("Linker flags for executables .......... ${CMAKE_EXE_LINKER_FLAGS}")
225+
message("Linker flags for shared libraries ..... ${CMAKE_SHARED_LINKER_FLAGS}")
203226
if(DEFINED CMAKE_BUILD_TYPE)
204227
message("Build type:")
205228
message(" - CMAKE_BUILD_TYPE ................... ${CMAKE_BUILD_TYPE}")

‎depends/toolchain.cmake.in

+4
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ if(NOT CMAKE_OBJCXX_COMPILER)
7373
endif()
7474
set(CMAKE_OBJCXX_FLAGS_INIT "${DEPENDS_OBJCXX_COMPILER_FLAGS} @CPPFLAGS@ @CXXFLAGS@")
7575

76+
if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
77+
set(CMAKE_EXE_LINKER_FLAGS_INIT "-static")
78+
endif()
79+
7680
set(CMAKE_AR "@AR@")
7781
set(CMAKE_RANLIB "@RANLIB@")
7882
set(CMAKE_STRIP "@STRIP@")

‎src/CMakeLists.txt

-4
Original file line numberDiff line numberDiff line change
@@ -235,10 +235,6 @@ if(BUILD_DAEMON)
235235
PRIVATE
236236
bitcoin_node
237237
)
238-
target_link_options(bitcoind
239-
PRIVATE
240-
$<$<BOOL:${MINGW}>:-static>
241-
)
242238
endif()
243239

244240

0 commit comments

Comments
 (0)