Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Support arm64 on windows #1800

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion packages/extester/src/util/codeUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,19 @@ export class CodeUtil {
if (platform === 'linux') {
platform += arch === 'ia32' ? '-ia32' : `-${arch}`;
} else if (platform === 'win32') {
platform += arch === 'x64' ? `-${arch}` : '';
switch (arch) {
case 'arm64': {
platform += '-arm64';
break;
}
case 'x64': {
platform += '-x64';
break;
}
default: {
throw new Error(`Unknown Platform: ${arch}`);
}
}
platform += '-archive';
this.cliEnv = `set ${this.cliEnv} &&`;
} else if (platform === 'darwin') {
Expand Down