diff --git a/lib/execution/execution-triple.ts b/lib/execution/execution-triple.ts index 894786322..b0f19c504 100644 --- a/lib/execution/execution-triple.ts +++ b/lib/execution/execution-triple.ts @@ -68,6 +68,9 @@ class CurrentHostExecHelper { if (hostArch === 'ia32' && value === 'x86') { return true; } + if (hostArch === 'riscv64' && value === 'riscv64') { + return true; + } return false; }