aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWang Qing <wangqing-hf@loongson.cn>2024-04-17 15:10:35 +0800
committerGeoff Lang <geofflang@google.com>2024-04-18 15:18:31 +0000
commitf453d53a986b88352784a012d9d01a484b3fc81d (patch)
treea8b7895be5099d62b5223b55e2d81c5b00a4ef0f
parent764410d4d65546fd1e536b02059b1f714a390720 (diff)
downloadswiftshader-f453d53a986b88352784a012d9d01a484b3fc81d.tar.gz
Reactor: loongarch64 is not supported in subzero.
Bug: swiftshader:178 Change-Id: I37f36a0c357da60a55bb2123aedac096bdfffe55 Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/73288 Reviewed-by: Geoff Lang <geofflang@google.com> Kokoro-Result: kokoro <noreply+kokoro@google.com> Tested-by: Ben Clayton <bclayton@google.com> Reviewed-by: Ben Clayton <bclayton@google.com>
-rw-r--r--src/Reactor/reactor.gni4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Reactor/reactor.gni b/src/Reactor/reactor.gni
index 04fad6f81..51cb8fbfe 100644
--- a/src/Reactor/reactor.gni
+++ b/src/Reactor/reactor.gni
@@ -9,8 +9,8 @@ import("../swiftshader.gni")
import("//build_overrides/build.gni")
declare_args() {
- # Subzero doesn't support ARM64, MIPS64, PPC64, and RISCV64 (only x86 and ARMv7a).
- supports_subzero = current_cpu != "arm64" && current_cpu != "mips64el" && current_cpu != "ppc64" && current_cpu != "riscv64"
+ # Subzero doesn't support ARM64, LOONGARCH64, MIPS64, PPC64, and RISCV64 (only x86 and ARMv7a).
+ supports_subzero = current_cpu != "arm64" && current_cpu != "mips64el" && current_cpu != "ppc64" && current_cpu != "riscv64" && current_cpu != "loong64"
}
declare_args() {