27 lines
790 B
Makefile
Executable file
27 lines
790 B
Makefile
Executable file
# Primary Arch
|
|
TARGET_ARCH := arm64
|
|
TARGET_ARCH_VARIANT := armv8-a
|
|
TARGET_CPU_VARIANT := generic
|
|
TARGET_CPU_ABI := arm64-v8a
|
|
|
|
# Secondary Arch
|
|
TARGET_2ND_ARCH := arm
|
|
TARGET_2ND_ARCH_VARIANT := armv7-a-neon
|
|
TARGET_2ND_CPU_VARIANT := cortex-a15
|
|
TARGET_2ND_CPU_ABI := armeabi-v7a
|
|
TARGET_2ND_CPU_ABI2 := armeabi
|
|
|
|
TARGET_USES_64_BIT_BINDER := true
|
|
TARGET_SUPPORTS_32_BIT_APPS := true
|
|
TARGET_SUPPORTS_64_BIT_APPS := true
|
|
|
|
ANDROID_64=true
|
|
|
|
# Copy the 64-bit primary, 32-bit secondary zygote startup script
|
|
PRODUCT_COPY_FILES += system/core/rootdir/init.zygote64_32.rc:root/init.zygote64_32.rc
|
|
|
|
# Set the zygote property to select the 64-bit primary, 32-bit secondary script
|
|
# This line must be parsed before the one in core_minimal.mk
|
|
PRODUCT_DEFAULT_PROPERTY_OVERRIDES += ro.zygote=zygote64_32
|
|
|
|
|