Skip to content

Commit

Permalink
Add Windows ARM64 Debugger Packages (#7798)
Browse files Browse the repository at this point in the history
* Add arm64 vsdbg package and update to newer versions.

* Remove arm64 block.

Co-authored-by: Andrew Wang <waan@microsoft.com>
  • Loading branch information
auott and WardenGnaw authored Jul 7, 2021
1 parent f474c28 commit bbf217f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
20 changes: 17 additions & 3 deletions Extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3107,7 +3107,7 @@
},
{
"description": "Visual Studio Windows Debugger",
"url": "https://go.microsoft.com/fwlink/?linkid=2162486",
"url": "https://go.microsoft.com/fwlink/?linkid=2167487",
"platforms": [
"win32"
],
Expand All @@ -3118,7 +3118,21 @@
"binaries": [
"./debugAdapters/vsdbg/bin/vsdbg.exe"
],
"integrity": "E5046509D510086B99F171595114220AD8E9F820E7238B6A5199CD78B9AD2078"
"integrity": "1EB0394D716604F9402AF43BE905A85F3C735CA94FE20DFE9770DDE6516019F7"
},
{
"description": "Visual Studio Windows ARM64 Debugger",
"url": "https://go.microsoft.com/fwlink/?linkid=2167488",
"platforms": [
"win32"
],
"architectures": [
"arm64"
],
"binaries": [
"./debugAdapters/vsdbg/bin/vsdbg.exe"
],
"integrity": "49D68434BD097752720137180E2ECA52637A9B65807651DA94D17620DD1EA8FA"
}
]
}
}
2 changes: 1 addition & 1 deletion Extension/src/Debugger/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function initialize(context: vscode.ExtensionContext): void {
// On non-windows platforms, the cppvsdbg debugger will not be registered for initial configurations.
// This will cause it to not show up on the dropdown list.
let vsdbgProvider: CppVsDbgConfigurationProvider | null = null;
if (os.platform() === 'win32' && os.arch() !== 'arm64') {
if (os.platform() === 'win32') {
vsdbgProvider = new CppVsDbgConfigurationProvider(configurationProvider);
disposables.push(vscode.debug.registerDebugConfigurationProvider('cppvsdbg', new QuickPickConfigurationProvider(vsdbgProvider)));
}
Expand Down

0 comments on commit bbf217f

Please sign in to comment.