mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2025-04-02 13:26:18 +03:00
mipsel: allocator: Fix mipsel build config
This commit is contained in:
parent
d23c129bb0
commit
eeaef4f37d
1 changed files with 3 additions and 2 deletions
|
@ -69,9 +69,10 @@ if (is_nacl) {
|
|||
# NaCl targets don't use 64-bit pointers.
|
||||
has_64_bit_pointers = false
|
||||
} else if (current_cpu == "x64" || current_cpu == "arm64" ||
|
||||
current_cpu == "loong64" || current_cpu == "riscv64") {
|
||||
current_cpu == "loong64" || current_cpu == "riscv64" ||
|
||||
current_cpu == "mips64el") {
|
||||
has_64_bit_pointers = true
|
||||
} else if (current_cpu == "x86" || current_cpu == "arm") {
|
||||
} else if (current_cpu == "x86" || current_cpu == "arm" || current_cpu == "mipsel") {
|
||||
has_64_bit_pointers = false
|
||||
} else {
|
||||
assert(false, "Unknown CPU: $current_cpu")
|
||||
|
|
Loading…
Add table
Reference in a new issue