arm: build: Support -mcpu= on ARM and ARM64
parent
e8833fa31c
commit
85fe5fb462
|
|
@ -27,6 +27,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") {
|
||||
|
|
@ -69,6 +71,9 @@ if (current_cpu == "arm" || v8_current_cpu == "arm") {
|
|||
current_cpu == "arm64e" || v8_current_cpu == "arm64e") {
|
||||
# arm64 supports only "hard".
|
||||
arm_float_abi = "hard"
|
||||
declare_args() {
|
||||
arm_cpu = ""
|
||||
}
|
||||
declare_args() {
|
||||
# Enables the new Armv8 branch protection features. Valid strings are:
|
||||
# - "pac": Enables Pointer Authentication Code (PAC, featured in Armv8.3)
|
||||
|
|
|
|||
|
|
@ -890,7 +890,11 @@ config("compiler") {
|
|||
# TODO(pcc): The contents of .ARM.attributes should be based on the
|
||||
# -march flag passed at compile time (see llvm.org/pr36291).
|
||||
if (current_cpu == "arm") {
|
||||
ldflags += [ "-march=$arm_arch" ]
|
||||
if (arm_cpu != "") {
|
||||
ldflags += [ "-mcpu=$arm_cpu" ]
|
||||
} else {
|
||||
ldflags += [ "-march=$arm_arch" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1347,11 +1351,19 @@ config("compiler_cpu_abi") {
|
|||
"-march=$arm_arch",
|
||||
"-mfloat-abi=$arm_float_abi",
|
||||
]
|
||||
if (arm_cpu != "") {
|
||||
cflags -= [ "-march=$arm_arch" ]
|
||||
cflags += [ "-mcpu=$arm_cpu" ]
|
||||
}
|
||||
ldflags += [ "-mfloat-abi=$arm_float_abi" ]
|
||||
} else if (current_cpu == "arm64") {
|
||||
if (is_clang && !is_android && !is_fuchsia && !is_chromeos_device) {
|
||||
cflags += [ "--target=aarch64-linux-gnu" ]
|
||||
ldflags += [ "--target=aarch64-linux-gnu" ]
|
||||
}
|
||||
if (arm_cpu != "") {
|
||||
cflags += [ "-mcpu=$arm_cpu" ]
|
||||
}
|
||||
if (target_os == "chromeos" && cros_target_cpu_arch != "" &&
|
||||
is_a_target_toolchain) {
|
||||
cflags += [ "-march=$cros_target_cpu_arch" ]
|
||||
|
|
|
|||
Loading…
Reference in New Issue