@@ -80,6 +80,8 @@ set(CMAKE_CXX_EXTENSIONS OFF)
80
80
81
81
set (configure_warnings)
82
82
83
+ include (TryAppendLinkerFlag)
84
+
83
85
if (WIN32 )
84
86
#[=[
85
87
This build system supports two ways to build binaries for Windows.
@@ -106,13 +108,32 @@ if(WIN32)
106
108
107
109
if (MINGW)
108
110
add_compile_definitions (WIN32 _WINDOWS _MT)
111
+ set (mingw_linker_flags "" )
109
112
# 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} )
111
117
endif ()
112
118
endif ()
113
119
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
+
114
126
if (CMAKE_SYSTEM_NAME STREQUAL "Darwin" )
115
127
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} )
116
137
endif ()
117
138
118
139
if (CMAKE_CROSSCOMPILING AND DEPENDS_ALLOW_HOST_PACKAGES)
@@ -200,6 +221,8 @@ message("Common compile options ................ ${common_compile_options}")
200
221
get_directory_property (common_link_options LINK_OPTIONS)
201
222
string (REPLACE ";" " " common_link_options "${common_link_options} " )
202
223
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} " )
203
226
if (DEFINED CMAKE_BUILD_TYPE )
204
227
message ("Build type:" )
205
228
message (" - CMAKE_BUILD_TYPE ................... ${CMAKE_BUILD_TYPE} " )
0 commit comments