aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2018-02-13 13:47:45 -0800
committerColin Cross <ccross@android.com>2018-02-13 13:50:11 -0800
commit86d1dc764a6ea0eef82cd37a4246c234d923c81b (patch)
treeb0bdfc870ebbb5c31b23993bad9c7ed911e72b8d
parent5f08f9b885de4ec95f249165d832a4b88866bb7c (diff)
downloadvalgrind-86d1dc764a6ea0eef82cd37a4246c234d923c81b.tar.gz
Fix building host valgrind for TARGET_ARCH=x86
The entire valgrind build was disabled when TARGET_ARCH=x86. It should still build the host valgrind tool even if the target arch is not supported. Use LOCAL_MODULE_TARGET_ARCH instead of a conditional. Test: lunch aosp_x86-eng && m checkbuild Change-Id: I89de9f9675d30ea3a760339798ed41bc3eaa72c3
-rw-r--r--Android.build_one.mk2
-rw-r--r--Android.mk5
2 files changed, 4 insertions, 3 deletions
diff --git a/Android.build_one.mk b/Android.build_one.mk
index 62d2c4702..126ad1c8d 100644
--- a/Android.build_one.mk
+++ b/Android.build_one.mk
@@ -14,6 +14,8 @@
include $(CLEAR_VARS)
+LOCAL_MODULE_TARGET_ARCH := $(VALGRIND_SUPPORTED_ARCH)
+
LOCAL_ARM_MODE := arm
ifeq ($(vg_build_second_arch),true)
LOCAL_MULTILIB := 32
diff --git a/Android.mk b/Android.mk
index 8c3f8a226..19f38ef85 100644
--- a/Android.mk
+++ b/Android.mk
@@ -16,7 +16,8 @@ LOCAL_PATH:= $(call my-dir)
ANDROID_HARDWARE := ANDROID_HARDWARE_generic
-ifneq ($(filter arm arm64 x86_64,$(TARGET_ARCH)),)
+# When updating this list also update the list in art/build/Android.gtest.mk
+VALGRIND_SUPPORTED_ARCH := arm arm64 x86_64
vg_arch:=$(TARGET_ARCH)
@@ -654,5 +655,3 @@ LOCAL_SRC_FILES := bionic.supp
include $(BUILD_PREBUILT)
endif
-
-endif