Changeset 87406 in vbox for trunk/tools/envSub.vbs
- Timestamp:
- Jan 24, 2021 4:52:50 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/envSub.vbs
r86348 r87406 42 42 43 43 44 '' Proforma. Does nothing here.45 44 sub LogPrint(str) 46 45 if g_cntVerbose > 1 then 46 WScript.StdErr.WriteLine "debug: " & str 47 end if 48 end sub 49 50 sub DbgPrint(str) 51 if g_cntVerbose > 2 then 47 52 WScript.StdErr.WriteLine "debug: " & str 48 53 end if … … 255 260 bldExitLoop = false 256 261 for each str1 in arrArchitectures 257 for each strDir in GetSubdirsStartingWithRVerSorted(strPathDevTools & "\win." & str1 & "\sdk", "v") 258 if FileExists(strWinDbgDir & "\Debuggers\" & XlateArchitectureToWin(strHostArch) & "\windbg.exe") then 259 EnvPrependPathItem "Path", DosSlashes(strWinDbgDir & "\Debuggers\" & XlateArchitectureToWin(strHostArch)), ";" 262 strDir = strPathDevTools & "\win." & str1 & "\sdk" 263 for each strSubDir in GetSubdirsStartingWithRVerSorted(strDir, "v") 264 if FileExists(strDir & "\" & strSubDir & "\Debuggers\" & XlateArchitectureToWin(strHostArch) & "\windbg.exe") then 265 EnvPrependPathItem "Path", DosSlashes(strDir & "\" & strSubDir & "\Debuggers\" & XlateArchitectureToWin(strHostArch)), ";" 260 266 bldExitLoop = true 261 267 exit for
Note:
See TracChangeset
for help on using the changeset viewer.