Fix the mips build.

The linker can't do --hash-style=gnu for mips.

Change-Id: I66a77067f8be6fc92ca686d3e6e159beb72cf76b
This commit is contained in:
Dan Albert 2015-12-09 16:26:20 -08:00
parent 2ad9079305
commit 8dca15f287
1 changed files with 5 additions and 1 deletions

View File

@ -87,7 +87,11 @@ ifdef LOCAL_SDK_VERSION
# hashes (which are much faster!), but shipping to older devices requires
# the old style hash. Fortunately, we can build with both and it'll work
# anywhere.
my_ldflags += -Wl,--hash-style=both
#
# This is not currently supported on MIPS architectures.
ifeq (,$(filter mips mips64,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)))
my_ldflags += -Wl,--hash-style=both
endif
# We don't want to expose the relocation packer to the NDK just yet.
LOCAL_PACK_MODULE_RELOCATIONS := false