summaryrefslogtreecommitdiffstats
path: root/core/host_shared_library.mk
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2015-04-07 15:11:37 -0700
committerColin Cross <ccross@google.com>2015-04-08 18:09:52 +0000
commit9d59f417767991246848c3e101cb27d2dfea5988 (patch)
treeb9565ce4bcc1f9491579ce3e200e783e917d8c31 /core/host_shared_library.mk
parent011a50e4e1cc7371d8fbd0ea08002241fe54a675 (diff)
downloadbuild-9d59f417767991246848c3e101cb27d2dfea5988.zip
build-9d59f417767991246848c3e101cb27d2dfea5988.tar.gz
build-9d59f417767991246848c3e101cb27d2dfea5988.tar.bz2
Change the default multilib for host libraries to "both"
Change host library builds to build for both architectures to match device builds, removing the need for LOCAL_MULTILIB := both in all the art library makefiles. Change-Id: I2689f67c66f5055f93941f40b3e825127f693eca
Diffstat (limited to 'core/host_shared_library.mk')
-rw-r--r--core/host_shared_library.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/host_shared_library.mk b/core/host_shared_library.mk
index 438a9ce..e840780 100644
--- a/core/host_shared_library.mk
+++ b/core/host_shared_library.mk
@@ -6,8 +6,8 @@ ifndef my_module_multilib
ifeq ($(HOST_PREFER_32_BIT),true)
my_module_multilib := 32
else
-# By default we only build host module for the first arch.
-my_module_multilib := first
+# libraries default to building for both architecturess
+my_module_multilib := both
endif
endif
endif