Merge changes I65c3fa9a,Id1ea5e8b am: 126ea5a55c am: 7363b91cb1 am: c2793b97e9

am: ec26fd752e

Change-Id: Iaaa49605571302f8fccd597a23e0611204184667
This commit is contained in:
Duane Sand 2016-09-06 23:37:09 +00:00 committed by android-build-merger
commit 5e1558d542
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,3 @@
# Configuration for Android on mips64r6.
ARCH_MIPS_REV6 := true
ARCH_MIPS64_REV6 := true

View File

@ -31,7 +31,10 @@ TARGET_CPU_ABI := mips64
TARGET_2ND_ARCH := mips
ifeq (,$(TARGET_2ND_ARCH_VARIANT))
ifeq ($(TARGET_ARCH_VARIANT),mips64r6)
TARGET_2ND_ARCH_VARIANT := mips32r6
# Imgtec builds use 32r6 arch variant with Imgtec-maintained prebuilts/ndk library:
# TARGET_2ND_ARCH_VARIANT := mips32r6
# Aosp builds lack full set of mips32r6 NDK prebuilts, so use 32r2 abi:
TARGET_2ND_ARCH_VARIANT := mips32r2-fp
else
TARGET_2ND_ARCH_VARIANT := mips32r2-fp
endif