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 39bfe46 commit c28356aCopy full SHA for c28356a
phlib/symprv.c
@@ -275,8 +275,10 @@ VOID PhpSymbolProviderCompleteInitialization(
275
PPH_STRING dbghelpName;
276
PPH_STRING symsrvName;
277
278
-#ifdef _WIN64
+#if defined(_M_AMD64)
279
PhMoveReference(&winsdkPath, PhConcatStringRefZ(&winsdkPath->sr, L"\\Debuggers\\x64\\"));
280
+#elif defined(_M_ARM64)
281
+ PhMoveReference(&winsdkPath, PhConcatStringRefZ(&winsdkPath->sr, L"\\Debuggers\\arm64\\"));
282
#else
283
PhMoveReference(&winsdkPath, PhConcatStringRefZ(&winsdkPath->sr, L"\\Debuggers\\x86\\"));
284
#endif
0 commit comments