summaryrefslogtreecommitdiffstats
path: root/core/dynamic_binary.mk
diff options
context:
space:
mode:
authorBruce Beare <brucex.j.beare@intel.com>2010-06-24 14:02:00 -0700
committerBruce Beare <brucex.j.beare@intel.com>2010-07-09 12:16:46 -0700
commit45ac4341515f7ff4d483cfb8e2fba8d3c2cb1f6e (patch)
treefc66f00b65f88735c16376ae4d20d4fb72f2bde0 /core/dynamic_binary.mk
parentdaea3fce402d7e10f224f97552f6890a26da31ed (diff)
downloadbuild-45ac4341515f7ff4d483cfb8e2fba8d3c2cb1f6e.zip
build-45ac4341515f7ff4d483cfb8e2fba8d3c2cb1f6e.tar.gz
build-45ac4341515f7ff4d483cfb8e2fba8d3c2cb1f6e.tar.bz2
Refactor Stripper. Allow a stripper other than SOSLIM to be specified
Change-Id: I61137f5bb123dc5f610af9928ed3debdf85ba74d Signed-off-by: Bruce Beare <brucex.j.beare@intel.com>
Diffstat (limited to 'core/dynamic_binary.mk')
-rw-r--r--core/dynamic_binary.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/dynamic_binary.mk b/core/dynamic_binary.mk
index 0818d87..c04deef 100644
--- a/core/dynamic_binary.mk
+++ b/core/dynamic_binary.mk
@@ -70,7 +70,7 @@ ifeq ($(LOCAL_COMPRESS_MODULE_SYMBOLS),true)
$(error Symbol compression not yet supported.)
compress_output := $(intermediates)/COMPRESSED-$(LOCAL_BUILT_MODULE_STEM)
-#TODO: write the real $(SOSLIM) rule.
+#TODO: write the real $(STRIPPER) rule.
#TODO: define a rule to build TARGET_SYMBOL_FILTER_FILE, and
# make it depend on ALL_ORIGINAL_DYNAMIC_BINARIES.
$(compress_output): $(compress_input) $(TARGET_SYMBOL_FILTER_FILE) | $(ACP)
@@ -132,7 +132,7 @@ endif
ifeq ($(LOCAL_STRIP_MODULE),true)
# Strip the binary
-$(strip_output): $(strip_input) | $(SOSLIM)
+$(strip_output): $(strip_input) | $(TARGET_STRIP)
$(transform-to-stripped)
else
# Don't strip the binary, just copy it. We can't skip this step