Changeset 106793 in vbox for trunk/tools
- Timestamp:
- Oct 30, 2024 2:58:06 PM (4 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/envSub.vbs
r106778 r106793 126 126 if strHostArch = "arm64" then 127 127 strAltHostArch = "amd64" 128 end if 129 130 ' Where to look for host related tools. 131 dim arrArchToolsSuffixes : arrArchToolsSuffixes = Array("", strHostArch & ".") 132 if strAltHostArch <> "" then 133 arrArchToolsSuffixes = ArrayAppend(arrArchToolsSuffixes, strAltHostArch & ".") 134 end if 135 if strHostArch <> "x86" and strAltHostArch <> "x86" then 136 arrArchToolsSuffixes = ArrayAppend(arrArchToolsSuffixes, ".x86") 128 137 end if 129 138 … … 281 290 dim strDir, blnStop 282 291 bldExitLoop = false 283 for each str1 in arrArch itectures284 strDir = strPathDevTools & "\win ." & str1 & "\sdk"292 for each str1 in arrArchToolsSuffixes 293 strDir = strPathDevTools & "\win" & str1 & "\sdk" 285 294 for each strSubDir in GetSubdirsStartingWithRVerSorted(strDir, "v") 286 295 if FileExists(strDir & "\" & strSubDir & "\Debuggers\" & XlateArchitectureToWin(strHostArch) & "\windbg.exe") then
Note:
See TracChangeset
for help on using the changeset viewer.