Update arm.gni

This commit is contained in:
Alexander David Frick 2022-09-04 07:10:25 -05:00 committed by GitHub
parent 3ee1c2f5ba
commit c71fac9b56
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,7 @@ if (current_cpu == "arm" || v8_current_cpu == "arm") {
declare_args() {
# Version of the ARM processor when compiling on ARM. Ignored on non-ARM
# platforms.
arm_version = 8
arm_version = 7
# The ARM architecture. This will be a string like "armv6" or "armv7-a".
# An empty string means to use the default for the arm_version.
@ -126,6 +126,7 @@ if (current_cpu == "arm" || v8_current_cpu == "arm") {
}
} else if (current_cpu == "arm64" || v8_current_cpu == "arm64") {
# arm64 supports only "hard".
arm_version = 8
arm_float_abi = "hard"
arm_use_neon = true
declare_args() {