mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
build: Support ARM -mcpu= flag
This commit is contained in:
parent
1a39cbb19a
commit
00ac4c6824
@ -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") {
|
||||
|
@ -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" ]
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user