diff options
author | Raphael <raphael@google.com> | 2011-09-16 12:25:07 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-09-16 12:25:07 -0700 |
commit | cf29731eea6ecf11a4d5f4d8ae2e549f58f60fc0 (patch) | |
tree | 40905be87e7745f8b5f147e9c93ffcf4043d5546 | |
parent | aae801fb1c1c298f378ed43a2ab4db2a29be2905 (diff) | |
parent | 469bbdf8c37a74e236d129faeaa5483838af9028 (diff) | |
download | build-cf29731eea6ecf11a4d5f4d8ae2e549f58f60fc0.zip build-cf29731eea6ecf11a4d5f4d8ae2e549f58f60fc0.tar.gz build-cf29731eea6ecf11a4d5f4d8ae2e549f58f60fc0.tar.bz2 |
Merge "Don't strip llvm-rs-rc in core/Makefile"
-rw-r--r-- | core/Makefile | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/core/Makefile b/core/Makefile index 837b300..93dda66 100644 --- a/core/Makefile +++ b/core/Makefile @@ -1393,12 +1393,6 @@ $(INTERNAL_SDK_TARGET): PRIVATE_INPUT_FILES := $(sdk_atree_files) # #SDK_GNU_ERROR := true -ifeq ($(HOST_OS),darwin) -HOST_STRIP_SDK_LLVM := strip -else -HOST_STRIP_SDK_LLVM := strip --strip-all -endif - $(INTERNAL_SDK_TARGET): $(deps) @echo "Package SDK: $@" $(hide) rm -rf $(PRIVATE_DIR) $@ @@ -1428,9 +1422,6 @@ $(INTERNAL_SDK_TARGET): $(deps) $(PRIVATE_DIR)/platforms/android-$(PLATFORM_VERSION)/images/$(TARGET_CPU_ABI)/NOTICE.txt && \ cp -f $(tools_notice_file_txt) $(PRIVATE_DIR)/tools/NOTICE.txt && \ cp -f $(tools_notice_file_txt) $(PRIVATE_DIR)/platform-tools/NOTICE.txt && \ - for f in $(PRIVATE_DIR)/platform-tools/llvm-rs-cc-* ; do \ - if [ -f "$$f" ]; then $(HOST_STRIP_SDK_LLVM) "$$f"; fi; \ - done && \ HOST_OUT_EXECUTABLES=$(HOST_OUT_EXECUTABLES) HOST_OS=$(HOST_OS) \ development/build/tools/sdk_clean.sh $(PRIVATE_DIR) && \ chmod -R ug+rwX $(PRIVATE_DIR) && \ |