From 14ef4bc4a6230e48c74d5898eb642e0e455ae72c Mon Sep 17 00:00:00 2001 From: xEgoist Date: Mon, 24 Oct 2022 00:19:31 -0500 Subject: [PATCH] remove check for OS architecture in createPdbXmlFiles.bat due to removal of 32-bit support it's no longer needed to check for OS type. --- .../RuntimeScripts/Windows/support/createPdbXmlFiles.bat | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Ghidra/RuntimeScripts/Windows/support/createPdbXmlFiles.bat b/Ghidra/RuntimeScripts/Windows/support/createPdbXmlFiles.bat index 25f62db0d8..fed8c216c4 100644 --- a/Ghidra/RuntimeScripts/Windows/support/createPdbXmlFiles.bat +++ b/Ghidra/RuntimeScripts/Windows/support/createPdbXmlFiles.bat @@ -28,14 +28,7 @@ set OS_DIR=build\os REM create absolute path for /f "delims=" %%i in ("%GHIDRA_DIR%") do set GHIDRA_DIR=%%~fi -REM Determine if 64-bit or 32-bit -if exist "%PROGRAMFILES(X86)%" ( - set OS_TYPE=win_x86_64 -) else ( - set OS_TYPE=win32 -) - -set "PDB_EXE=%GHIDRA_DIR%\Features\PDB\%OS_DIR%\%OS_TYPE%\pdb.exe" +set "PDB_EXE=%GHIDRA_DIR%\Features\PDB\%OS_DIR%\win_x86_64\pdb.exe" if not exist "%PDB_EXE%" ( echo "%PDB_EXE% not found"