VirtualBox

Changeset 106793 in vbox for trunk/tools


Ignore:
Timestamp:
Oct 30, 2024 2:58:06 PM (4 weeks ago)
Author:
vboxsync
Message:

tools/envSub.vbs: Debugger selection update for the new sdk. jiraref:VBP-1253

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/envSub.vbs

    r106778 r106793  
    126126   if strHostArch = "arm64" then
    127127      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")
    128137   end if
    129138
     
    281290      dim strDir, blnStop
    282291      bldExitLoop = false
    283       for each str1 in arrArchitectures
    284          strDir = strPathDevTools & "\win." & str1 & "\sdk"
     292      for each str1 in arrArchToolsSuffixes
     293         strDir = strPathDevTools & "\win" & str1 & "\sdk"
    285294         for each strSubDir in GetSubdirsStartingWithRVerSorted(strDir, "v")
    286295            if FileExists(strDir & "\" & strSubDir & "\Debuggers\" & XlateArchitectureToWin(strHostArch) & "\windbg.exe") then
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette