mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2025-04-08 19:52:06 +00:00
arm: build: Support ARM build without FPU
This commit is contained in:
parent
55c82dd9f5
commit
cdc07b2f0e
1 changed files with 1 additions and 1 deletions
|
@ -1676,7 +1676,7 @@ config("rustc_revision") {
|
|||
}
|
||||
|
||||
config("compiler_arm_fpu") {
|
||||
if (current_cpu == "arm" && !is_ios && !is_nacl) {
|
||||
if (current_cpu == "arm" && !is_ios && !is_nacl && arm_fpu != "") {
|
||||
cflags = [ "-mfpu=$arm_fpu" ]
|
||||
if (!arm_use_thumb) {
|
||||
cflags += [ "-marm" ]
|
||||
|
|
Loading…
Add table
Reference in a new issue