diff options
author | Anton Hansson <hansson@google.com> | 2019-02-21 15:04:20 +0000 |
---|---|---|
committer | Michael Bestas <mkbestas@lineageos.org> | 2020-09-12 23:19:10 +0300 |
commit | 084af9f7eb86b94ce51809240d459745ed75930f (patch) | |
tree | 69ddd663e7650b928a8afc7852f7d775f2a064e9 | |
parent | 84d8ce6a1196f8f3a5ccf0616972a2b10e75958f (diff) |
sdm660-common: Set cpu "runtime variant" to cortex-a73
This makes bionic and various art tools that compile/runs cpu-specific
code choose the kryo variant at runtime. It does not affect
build-time compilation.
Bug: 120773446
Test: bionic benchmarks with and without this change
Change-Id: I670c8acd094090135515688c5f057c2cc08a083f
-rw-r--r-- | BoardConfigCommon.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/BoardConfigCommon.mk b/BoardConfigCommon.mk index d6bd1f7..1c5ec14 100644 --- a/BoardConfigCommon.mk +++ b/BoardConfigCommon.mk @@ -40,12 +40,14 @@ TARGET_ARCH_VARIANT := armv8-a TARGET_CPU_ABI := arm64-v8a TARGET_CPU_ABI2 := TARGET_CPU_VARIANT := generic +TARGET_CPU_VARIANT_RUNTIME := cortex-a73 TARGET_2ND_ARCH := arm TARGET_2ND_ARCH_VARIANT := armv8-a TARGET_2ND_CPU_ABI := armeabi-v7a TARGET_2ND_CPU_ABI2 := armeabi TARGET_2ND_CPU_VARIANT := generic +TARGET_2ND_CPU_VARIANT_RUNTIME := cortex-a73 TARGET_USES_64_BIT_BINDER := true |