Skip to content

Commit 3dd3e88

Browse files
authored
Don't register cppvsdbg for Windows ARM. (#6401)
1 parent b25e519 commit 3dd3e88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Extension/src/Debugger/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export function initialize(context: vscode.ExtensionContext): void {
3737
// On non-windows platforms, the cppvsdbg debugger will not be registered for initial configurations.
3838
// This will cause it to not show up on the dropdown list.
3939
let vsdbgProvider: CppVsDbgConfigurationProvider | null = null;
40-
if (os.platform() === 'win32') {
40+
if (os.platform() === 'win32' && os.arch() !== 'arm64') {
4141
vsdbgProvider = new CppVsDbgConfigurationProvider(configurationProvider);
4242
disposables.push(vscode.debug.registerDebugConfigurationProvider('cppvsdbg', new QuickPickConfigurationProvider(vsdbgProvider)));
4343
}

0 commit comments

Comments
 (0)