summaryrefslogtreecommitdiffstats
path: root/core/combo/HOST_darwin-x86.mk
diff options
context:
space:
mode:
authorC. Sean Young <csyoung@google.com>2014-02-19 12:53:43 -0800
committerC. Sean Young <csyoung@google.com>2014-02-19 12:53:43 -0800
commitb47c863ec7d7b0d6806d7ea85887c662893a2c70 (patch)
treecd339279b40d00dbc9b055df3219ad2e885d7c6d /core/combo/HOST_darwin-x86.mk
parent5aa50c6637f88213661b29facaf05f072316dec0 (diff)
downloadbuild-b47c863ec7d7b0d6806d7ea85887c662893a2c70.zip
build-b47c863ec7d7b0d6806d7ea85887c662893a2c70.tar.gz
build-b47c863ec7d7b0d6806d7ea85887c662893a2c70.tar.bz2
Strip all symbols on x86
Strip all of the non-dynamic symbols on x86 targets, instead of just the debug symbols. Change-Id: Id799a6a8c8b0e8bf70977328e42e5efa23762f25
Diffstat (limited to 'core/combo/HOST_darwin-x86.mk')
-rw-r--r--core/combo/HOST_darwin-x86.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/combo/HOST_darwin-x86.mk b/core/combo/HOST_darwin-x86.mk
index 33289ac..a0aaafa 100644
--- a/core/combo/HOST_darwin-x86.mk
+++ b/core/combo/HOST_darwin-x86.mk
@@ -95,7 +95,7 @@ HOST_CXX := g++
endif # $(HOST_TOOLCHAIN_PREFIX)-gcc exists
HOST_AR := $(AR)
HOST_STRIP := $(STRIP)
-HOST_STRIP_COMMAND = $(HOST_STRIP) --strip-debug $< -o $@
+HOST_STRIP_COMMAND = $(HOST_STRIP) --strip-all $< -o $@
HOST_GLOBAL_CFLAGS += -isysroot $(mac_sdk_root) -mmacosx-version-min=$(mac_sdk_version) -DMACOSX_DEPLOYMENT_TARGET=$(mac_sdk_version)
HOST_GLOBAL_LDFLAGS += -isysroot $(mac_sdk_root) -Wl,-syslibroot,$(mac_sdk_root) -mmacosx-version-min=$(mac_sdk_version)