mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 10:33:59 -05:00
Allow riscv64 run on current host (#8313)
Support execution when CE run on riscv64. Tested on SpacemiT K1 board.
This commit is contained in:
@@ -68,6 +68,9 @@ class CurrentHostExecHelper {
|
||||
if (hostArch === 'ia32' && value === 'x86') {
|
||||
return true;
|
||||
}
|
||||
if (hostArch === 'riscv64' && value === 'riscv64') {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user