Merge "Propagate CREATE_MINIDEBUGINFO to strip.sh" am: d18e14229c am: 9ad4c9219a am: 802c44c3f8

Original change: https://android-review.googlesource.com/c/platform/build/+/1692409

Change-Id: If2e7fd4aaec64a2b661d6169a6d92aaafd83a50f
This commit is contained in:
David Srbecky 2021-05-03 16:41:34 +00:00 committed by Automerger Merge Worker
commit 7568db864b
1 changed files with 5 additions and 1 deletions

View File

@ -132,12 +132,16 @@ endif
ifneq (,$(my_strip_module))
$(strip_output): PRIVATE_STRIP_ARGS := $(my_strip_args)
$(strip_output): PRIVATE_TOOLS_PREFIX := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)TOOLS_PREFIX)
$(strip_output): $(strip_input) $(SOONG_STRIP_PATH)
$(strip_output): $(strip_input) $(SOONG_STRIP_PATH) $(XZ)
@echo "$($(PRIVATE_PREFIX)DISPLAY) Strip: $(PRIVATE_MODULE) ($@)"
CLANG_BIN=$(LLVM_PREBUILTS_PATH) \
CROSS_COMPILE=$(PRIVATE_TOOLS_PREFIX) \
XZ=$(XZ) \
CREATE_MINIDEBUGINFO=${CREATE_MINIDEBUGINFO} \
$(SOONG_STRIP_PATH) -i $< -o $@ -d $@.strip.d $(PRIVATE_STRIP_ARGS)
ifneq ($(HOST_OS),darwin)
$(strip_output): $(CREATE_MINIDEBUGINFO)
endif
$(call include-depfile,$(strip_output).strip.d,$(strip_output))
else
# Don't strip the binary, just copy it. We can't skip this step