diff options
author | Jeff Brown <jeffbrown@google.com> | 2011-02-04 20:15:00 -0800 |
---|---|---|
committer | Jeff Brown <jeffbrown@google.com> | 2011-02-08 16:38:56 -0800 |
commit | 703e7c6d50a5bddf0fb057a1a26618e2f7138c31 (patch) | |
tree | 5e24b5c6effe4088eb68e29f741ab8f7a33aaec5 /core/dynamic_binary.mk | |
parent | 706408ea9f2450118a76ad9915ac0c5f73209efd (diff) | |
download | build-703e7c6d50a5bddf0fb057a1a26618e2f7138c31.zip build-703e7c6d50a5bddf0fb057a1a26618e2f7138c31.tar.gz build-703e7c6d50a5bddf0fb057a1a26618e2f7138c31.tar.bz2 |
Build system tweaks for Valgrind.
Added LOCAL_NO_CRT to enable building executables that do not link
to the C runtime library.
Removed support for LOCAL_MODULE_SUBDIR since it was broken
and unused. (Was going to use it but ended up using LOCAL_MODULE_PATH
instead.)
Change-Id: I3b6f5ab7e5ae6aaa7119899adccece2b4ab1cbb3
Diffstat (limited to 'core/dynamic_binary.mk')
-rw-r--r-- | core/dynamic_binary.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/dynamic_binary.mk b/core/dynamic_binary.mk index 0fa7647..005ccf3 100644 --- a/core/dynamic_binary.mk +++ b/core/dynamic_binary.mk @@ -94,7 +94,7 @@ prelink_input := $(compress_output) # The output of the prelink step is the binary we want to use # for symbolic debugging; the prelink step may move sections # around, so we have to use this version. -prelink_output := $(LOCAL_UNSTRIPPED_PATH)/$(LOCAL_MODULE_SUBDIR)$(LOCAL_BUILT_MODULE_STEM) +prelink_output := $(LOCAL_UNSTRIPPED_PATH)/$(LOCAL_BUILT_MODULE_STEM) # Skip prelinker if it is FDO instrumentation build. ifneq ($(strip $(BUILD_FDO_INSTRUMENT)),) |