build: Support -mcpu= on ARM and ARM64

This commit is contained in:
klzgrad 2020-05-19 23:42:14 +08:00
parent 1d0db502ca
commit b5d33accc6
2 changed files with 12 additions and 0 deletions

View File

@ -36,6 +36,8 @@ if (current_cpu == "arm" || v8_current_cpu == "arm") {
# Thumb is a reduced instruction set available on some ARM processors that # Thumb is a reduced instruction set available on some ARM processors that
# has increased code density. # has increased code density.
arm_use_thumb = true arm_use_thumb = true
arm_cpu = ""
} }
if (current_os == "android" || target_os == "android") { if (current_os == "android" || target_os == "android") {
@ -123,4 +125,7 @@ if (current_cpu == "arm" || v8_current_cpu == "arm") {
# arm64 supports only "hard". # arm64 supports only "hard".
arm_float_abi = "hard" arm_float_abi = "hard"
arm_use_neon = true arm_use_neon = true
declare_args() {
arm_cpu = ""
}
} }

View File

@ -846,6 +846,10 @@ config("compiler_cpu_abi") {
"-march=$arm_arch", "-march=$arm_arch",
"-mfloat-abi=$arm_float_abi", "-mfloat-abi=$arm_float_abi",
] ]
if (arm_cpu != "") {
cflags += [ "-mcpu=$arm_cpu" ]
}
ldflags += [ "-mfloat-abi=$arm_float_abi" ]
} }
if (arm_tune != "") { if (arm_tune != "") {
cflags += [ "-mtune=$arm_tune" ] cflags += [ "-mtune=$arm_tune" ]
@ -855,6 +859,9 @@ config("compiler_cpu_abi") {
cflags += [ "--target=aarch64-linux-gnu" ] cflags += [ "--target=aarch64-linux-gnu" ]
ldflags += [ "--target=aarch64-linux-gnu" ] ldflags += [ "--target=aarch64-linux-gnu" ]
} }
if (arm_cpu != "") {
cflags += [ "-mcpu=$arm_cpu" ]
}
} else if (current_cpu == "mipsel" && !is_nacl) { } else if (current_cpu == "mipsel" && !is_nacl) {
ldflags += [ "-Wl,--hash-style=sysv" ] ldflags += [ "-Wl,--hash-style=sysv" ]
if (custom_toolchain == "") { if (custom_toolchain == "") {