mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-23 03:39:23 +00:00
Add support for arm64 for server builds
This commit is contained in:
@@ -65,11 +65,6 @@ for (let dir of dirs) {
|
||||
if (process.env['LDFLAGS']) { delete env['LDFLAGS']; }
|
||||
if (process.env['VSCODE_REMOTE_NODE_GYP']) { env['npm_config_node_gyp'] = process.env['VSCODE_REMOTE_NODE_GYP']; }
|
||||
|
||||
// TODO@server-darwin-arm64: Remove this check when support for arm64 for the server is added on darwin
|
||||
if (/^remote/.test(dir) && process.platform === 'darwin' && (process.arch === 'arm64' || process.env['npm_config_arch'] === 'arm64')) {
|
||||
// darwin arm: force `x64` on remote folder
|
||||
env['npm_config_arch'] = 'x64';
|
||||
}
|
||||
opts = { env };
|
||||
} else if (/^extensions\//.test(dir)) {
|
||||
opts = { ignoreEngines: true };
|
||||
|
||||
Reference in New Issue
Block a user