Type: General
Now that Visual Studio Code - Exploration pretty much fully supports Apple Silicon, is there an open issue for porting this extension over? Not to oversimplify matters but it seems like a pretty trivial port.
Describe the bug
Clone this repo into your Mac and modify the activate(context: vscode.ExtensionContext) function at line 36 in extension/main.ts by adding one condition in the following if expression as:
if (
arch !== 'x64'
&&
(process.platform !== 'win32' || (arch !== 'ia32' && arch !== 'arm64'))
&&
(process.platform !== 'darwin' || arch !== 'arm64') // add this condition
&&
(process.platform !== 'linux' || (arch !== 'x64' && arch !== 'arm' && arch !== 'arm64'))
)
Then build it and export an VSIX extension file to install it. I am using this modified version for 3 days on my C++ development without any bug of this extension.
This feature request requires changing our closed source code.
Duplicating this to https://github.com/microsoft/vscode-cpptools/issues/6595
Most helpful comment
Clone this repo into your Mac and modify the activate(context: vscode.ExtensionContext) function at line 36 in extension/main.ts by adding one condition in the following if expression as:
Then build it and export an VSIX extension file to install it. I am using this modified version for 3 days on my C++ development without any bug of this extension.