mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-23 22:06:12 +03:00
build: Support -mcpu= on ARM and ARM64
This commit is contained in:
parent
e2ef5cbb3f
commit
8436fbf30f
@ -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") {
|
||||||
@ -124,6 +126,9 @@ 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 = ""
|
||||||
|
}
|
||||||
declare_args() {
|
declare_args() {
|
||||||
# Enables the new Armv8 branch protection features. Valid strings are:
|
# Enables the new Armv8 branch protection features. Valid strings are:
|
||||||
# - "pac": Enables Pointer Authentication Code (PAC, featured in Armv8.3)
|
# - "pac": Enables Pointer Authentication Code (PAC, featured in Armv8.3)
|
||||||
|
@ -926,6 +926,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" ]
|
||||||
@ -939,6 +943,9 @@ config("compiler_cpu_abi") {
|
|||||||
# Outline atomics crash on Exynos 9810. http://crbug.com/1272795
|
# Outline atomics crash on Exynos 9810. http://crbug.com/1272795
|
||||||
cflags += [ "-mno-outline-atomics" ]
|
cflags += [ "-mno-outline-atomics" ]
|
||||||
}
|
}
|
||||||
|
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 == "") {
|
||||||
|
Loading…
Reference in New Issue
Block a user