mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2026-05-28 18:06:32 +03:00
arm: build: Support -mcpu= on ARM and ARM64
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -902,7 +902,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" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1372,11 +1376,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" ]
|
||||
|
||||
Reference in New Issue
Block a user