summaryrefslogtreecommitdiffstats
path: root/Modules/Platform/Darwin-GNU.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2010-12-22 21:28:54 (GMT)
committerBrad King <brad.king@kitware.com>2010-12-22 21:28:54 (GMT)
commite498527f1ded497ddaf2d3285ace224f2e013a40 (patch)
tree5dcd3db7f4b2817ab869c2b38b34e21de355e6dd /Modules/Platform/Darwin-GNU.cmake
parenteda7841fd2de59b1dd05cccc5c4996276a2137d2 (diff)
downloadCMake-e498527f1ded497ddaf2d3285ace224f2e013a40.zip
CMake-e498527f1ded497ddaf2d3285ace224f2e013a40.tar.gz
CMake-e498527f1ded497ddaf2d3285ace224f2e013a40.tar.bz2
Pass Mac linker flag through all compilers with -Wl,
The Mac linker defines flag -headerpad_max_install_names but not all front-ends recognize the flag and pass it through (many did in the past, such as the Apple port of GCC). Use the -Wl, option prefix to tell front-ends to pass it through without trying to interpret it.
Diffstat (limited to 'Modules/Platform/Darwin-GNU.cmake')
-rw-r--r--Modules/Platform/Darwin-GNU.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/Platform/Darwin-GNU.cmake b/Modules/Platform/Darwin-GNU.cmake
index f425eb9..8a50a6a 100644
--- a/Modules/Platform/Darwin-GNU.cmake
+++ b/Modules/Platform/Darwin-GNU.cmake
@@ -20,8 +20,8 @@ set(__DARWIN_COMPILER_GNU 1)
macro(__darwin_compiler_gnu lang)
# GNU does not have -shared on OS X
- set(CMAKE_SHARED_LIBRARY_CREATE_${lang}_FLAGS "-dynamiclib -headerpad_max_install_names")
- set(CMAKE_SHARED_MODULE_CREATE_${lang}_FLAGS "-bundle -headerpad_max_install_names")
+ set(CMAKE_SHARED_LIBRARY_CREATE_${lang}_FLAGS "-dynamiclib -Wl,-headerpad_max_install_names")
+ set(CMAKE_SHARED_MODULE_CREATE_${lang}_FLAGS "-bundle -Wl,-headerpad_max_install_names")
endmacro()
macro(cmake_gnu_has_isysroot lang)