summaryrefslogtreecommitdiff
path: root/toolchain/generic.cmake
diff options
context:
space:
mode:
authorme <me@me-mac.lan>2015-09-24 09:37:31 -0700
committerme <me@me-mac.lan>2015-09-24 09:37:31 -0700
commit6728257371eb4331be5dd3f04162d2756e164435 (patch)
treee6c7557843be2811ffc68eb35c6e45f7d5350e1e /toolchain/generic.cmake
parent4dc0ded0b3acf88dda8e7d5ef243c44231d6eb22 (diff)
Use -dead_strip linker flag instead of --gc-sections on OS X.
Diffstat (limited to 'toolchain/generic.cmake')
-rw-r--r--toolchain/generic.cmake9
1 files changed, 6 insertions, 3 deletions
diff --git a/toolchain/generic.cmake b/toolchain/generic.cmake
index d9f5ef6..ee80574 100644
--- a/toolchain/generic.cmake
+++ b/toolchain/generic.cmake
@@ -13,8 +13,11 @@ set(SIZE size)
set(CMAKE_C_FLAGS "-std=gnu99 -fdata-sections -ffunction-sections" CACHE INTERNAL "c compiler flags")
set(CMAKE_CXX_FLAGS "-fdata-sections -ffunction-sections" CACHE INTERNAL "cxx compiler flags")
set(CMAKE_ASM_FLAGS "" CACHE INTERNAL "asm compiler flags")
-set(CMAKE_EXE_LINKER_FLAGS "-Wl,--gc-sections" CACHE INTERNAL "exe link flags")
-
+if (APPLE)
+ set(CMAKE_EXE_LINKER_FLAGS "-dead_strip" CACHE INTERNAL "exe link flags")
+else (APPLE)
+ set(CMAKE_EXE_LINKER_FLAGS "-Wl,--gc-sections" CACHE INTERNAL "exe link flags")
+endif (APPLE)
SET(CMAKE_C_FLAGS_DEBUG "-O0 -g -ggdb3" CACHE INTERNAL "c debug compiler flags")
SET(CMAKE_CXX_FLAGS_DEBUG "-O0 -g -ggdb3" CACHE INTERNAL "cxx debug compiler flags")
@@ -22,4 +25,4 @@ SET(CMAKE_ASM_FLAGS_DEBUG "-g -ggdb3" CACHE INTERNAL "asm debug compiler flags")
SET(CMAKE_C_FLAGS_RELEASE "-O2" CACHE INTERNAL "c release compiler flags")
SET(CMAKE_CXX_FLAGS_RELEASE "-O2" CACHE INTERNAL "cxx release compiler flags")
-SET(CMAKE_ASM_FLAGS_RELEASE "" CACHE INTERNAL "asm release compiler flags") \ No newline at end of file
+SET(CMAKE_ASM_FLAGS_RELEASE "" CACHE INTERNAL "asm release compiler flags")