We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b25e519 commit 3dd3e88Copy full SHA for 3dd3e88
Extension/src/Debugger/extension.ts
@@ -37,7 +37,7 @@ export function initialize(context: vscode.ExtensionContext): void {
37
// On non-windows platforms, the cppvsdbg debugger will not be registered for initial configurations.
38
// This will cause it to not show up on the dropdown list.
39
let vsdbgProvider: CppVsDbgConfigurationProvider | null = null;
40
- if (os.platform() === 'win32') {
+ if (os.platform() === 'win32' && os.arch() !== 'arm64') {
41
vsdbgProvider = new CppVsDbgConfigurationProvider(configurationProvider);
42
disposables.push(vscode.debug.registerDebugConfigurationProvider('cppvsdbg', new QuickPickConfigurationProvider(vsdbgProvider)));
43
}
0 commit comments