mipsel: allocator: Fix mipsel build config

master
klzgrad 2023-04-05 13:47:03 +08:00
parent b861b53110
commit bfa135f8d5
1 changed files with 2 additions and 2 deletions

View File

@ -70,11 +70,11 @@ if (is_nacl) {
has_64_bit_pointers = false
} else if (current_cpu == "x64" || current_cpu == "arm64" ||
current_cpu == "arm64e" || current_cpu == "loong64" ||
current_cpu == "riscv64") {
current_cpu == "riscv64" || current_cpu == "mips64el") {
assert(current_cpu != "arm64e" || (is_ios && target_environment == "device"))
has_64_bit_pointers = true
} else if (current_cpu == "x86" || current_cpu == "arm" ||
current_cpu == "wasm") {
current_cpu == "wasm" || current_cpu == "mipsel") {
has_64_bit_pointers = false
} else {
assert(false, "Unknown CPU: $current_cpu")