Allow riscv64 run on current host (#8313)

Support execution when CE run on riscv64.
Tested on SpacemiT K1 board.
This commit is contained in:
Mark Zhuang
2025-12-10 11:59:29 +08:00
committed by GitHub
parent 58bab32cfa
commit 73393af963

View File

@@ -68,6 +68,9 @@ class CurrentHostExecHelper {
if (hostArch === 'ia32' && value === 'x86') {
return true;
}
if (hostArch === 'riscv64' && value === 'riscv64') {
return true;
}
return false;
}