aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2015-12-22 22:05:30 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-12-22 22:05:30 +0000
commitd52953e9ed3a9625a61548234575acd4f0bbe87a (patch)
treea72b0225e3a89a9b5f2db6e209e5f9fd9b4d3523
parent4a017112672901130c7ceb6c778f1ca243f2dd49 (diff)
parent8b9a464de4599a8eee166c5265b64e3d08142a5a (diff)
downloadbuild-d52953e9ed3a9625a61548234575acd4f0bbe87a.tar.gz
Merge "Default LOCAL_MULTILIB:=both for HOST_NATIVE_TEST"
-rw-r--r--core/host_native_test.mk18
1 files changed, 18 insertions, 0 deletions
diff --git a/core/host_native_test.mk b/core/host_native_test.mk
index b54bd3a15a..7cba1ae9b1 100644
--- a/core/host_native_test.mk
+++ b/core/host_native_test.mk
@@ -5,4 +5,22 @@
include $(BUILD_SYSTEM)/host_test_internal.mk
+needs_symlink :=
+ifndef LOCAL_MULTILIB
+ ifndef LOCAL_32_BIT_ONLY
+ LOCAL_MULTILIB := both
+
+ ifeq (,$(LOCAL_MODULE_STEM_32)$(LOCAL_MODULE_STEM_64))
+ LOCAL_MODULE_STEM_32 := $(LOCAL_MODULE)32
+ LOCAL_MODULE_STEM_64 := $(LOCAL_MODULE)64
+ needs_symlink := true
+ endif
+ endif
+endif
+
include $(BUILD_HOST_EXECUTABLE)
+
+ifdef needs_symlink
+include $(BUILD_SYSTEM)/executable_prefer_symlink.mk
+needs_symlink :=
+endif