From 74ad8a8cdc833cf9465a3553ba830d745a89346a Mon Sep 17 00:00:00 2001 From: Xindong Xu Date: Mon, 26 Mar 2018 09:15:50 +0000 Subject: braun: build as 32 bit default [4/8] PD# NONE build as 32 bit default Change-Id: I05d8c807917fcbf481d437c79d06227919292359 --- diff --git a/BoardConfig.mk b/BoardConfig.mk index 63a5825..d070577 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # -ifeq ($(ANDROID_BUILD_TYPE), 32) +ifneq ($(ANDROID_BUILD_TYPE), 64) TARGET_CPU_ABI := armeabi-v7a TARGET_CPU_ABI2 := armeabi TARGET_CPU_SMP := true diff --git a/braun.mk b/braun.mk index 9e2a211..11c208e 100644 --- a/braun.mk +++ b/braun.mk @@ -22,7 +22,7 @@ #TARGET_DYNAMIC_ZYGOTE_SECONDARY_ENABLE := true # Inherit from those products. Most specific first. -ifneq ($(ANDROID_BUILD_TYPE), 32) +ifeq ($(ANDROID_BUILD_TYPE), 64) ifeq ($(TARGET_DYNAMIC_ZYGOTE_SECONDARY_ENABLE), true) $(call inherit-product, device/amlogic/common/dynamic_zygote_seondary/dynamic_zygote_64_bit.mk) else -- cgit