build: Support ARM -mcpu= flag

This commit is contained in:
klzgrad 2020-05-19 23:42:14 +08:00
parent 1a39cbb19a
commit 00ac4c6824
2 changed files with 8 additions and 2 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
# has increased code density.
arm_use_thumb = true
arm_cpu = ""
}
if (current_os == "android" || target_os == "android") {

View File

@ -834,7 +834,7 @@ config("compiler_cpu_abi") {
]
}
} else if (current_cpu == "arm") {
if (is_clang && !is_android && !is_nacl) {
if (is_clang && !is_android && !is_nacl && custom_toolchain == "") {
cflags += [ "--target=arm-linux-gnueabihf" ]
ldflags += [ "--target=arm-linux-gnueabihf" ]
}
@ -843,12 +843,16 @@ config("compiler_cpu_abi") {
"-march=$arm_arch",
"-mfloat-abi=$arm_float_abi",
]
if (arm_cpu != "") {
cflags += [ "-mcpu=$arm_cpu" ]
}
ldflags += [ "-mfloat-abi=$arm_float_abi" ]
}
if (arm_tune != "") {
cflags += [ "-mtune=$arm_tune" ]
}
} else if (current_cpu == "arm64") {
if (is_clang && !is_android && !is_nacl && !is_fuchsia) {
if (is_clang && !is_android && !is_nacl && !is_fuchsia && custom_toolchain == "") {
cflags += [ "--target=aarch64-linux-gnu" ]
ldflags += [ "--target=aarch64-linux-gnu" ]
}