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
This commit is contained in:
Colin Cross 2015-04-07 15:11:37 -07:00 committed by Colin Cross
parent 011a50e4e1
commit 9d59f41776
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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