summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-01-17 14:24:59 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2014-01-17 14:24:59 (GMT)
commit5348338c2de18fa313734a65ba3b25b47efce538 (patch)
tree6480499f17bb5733fac9e165665812696b246bd3
parente046e2c67d3f857ca59bb45d786b92ac861c3fb6 (diff)
parent8f2c2ccb0b29f69f3842f09db100c489e8de1581 (diff)
downloadCMake-5348338c2de18fa313734a65ba3b25b47efce538.zip
CMake-5348338c2de18fa313734a65ba3b25b47efce538.tar.gz
CMake-5348338c2de18fa313734a65ba3b25b47efce538.tar.bz2
Merge topic 'hppa-binutils-flag'
8f2c2ccb Improve ld flags for CMake itself on Linux/HPPA
-rw-r--r--CompileFlags.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/CompileFlags.cmake b/CompileFlags.cmake
index 20f5dec..24ac58d 100644
--- a/CompileFlags.cmake
+++ b/CompileFlags.cmake
@@ -66,5 +66,5 @@ endif ()
# avoid binutils problem with large binaries, e.g. when building CMake in debug mode
# See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50230
if (CMAKE_SYSTEM_NAME STREQUAL Linux AND CMAKE_SYSTEM_PROCESSOR STREQUAL parisc)
- set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--unique=.text.*")
+ set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--unique=.text._*")
endif ()