Changeset 85782 in vbox
- Timestamp:
- Aug 15, 2020 7:07:33 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139938
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.vbs
r85781 r85782 52 52 g_blnDisableCOM = False 53 53 g_strDisableCOM = "" 54 55 ' The internal mode is primarily for skipping some large libraries.56 dim g_blnInternalMode57 g_blnInternalMode = False58 54 59 55 ' Whether to try the internal stuff first or last. … … 694 690 sub MsgError(strMsg) 695 691 Print "error: " & strMsg 696 if g_blnInternalMode = False then 697 Wscript.Quit 698 end if 692 Wscript.Quit 699 693 end sub 700 694 … … 819 813 CfgPrint "# Build configuration generated by " & GetCommandline() 820 814 CfgPrint "#" 821 if g_blnInternalMode = False then 822 CfgPrint "VBOX_OSE := 1" 823 CfgPrint "VBOX_VCC_WERR = $(NO_SUCH_VARIABLE)" 824 end if 815 CfgPrint "VBOX_OSE := 1" 816 CfgPrint "VBOX_VCC_WERR = $(NO_SUCH_VARIABLE)" 825 817 end sub 826 818 … … 2074 2066 Print "Configuration:" 2075 2067 Print " -h, --help Display this." 2076 Print " -- internal Enable internal mode."2068 Print " --target-arch=x86|amd64 The target architecture." 2077 2069 Print " --internal-last Check internal (tools/win.*) last instad of first." 2078 Print " --target-arch=x86|amd64 The target architecture."2079 2070 Print "" 2080 2071 Print "Components:" … … 2196 2187 case "--disable-sdl" 2197 2188 blnOptDisableSDL = True 2198 case "--internal "2199 g_blnInternal Mode= True2189 case "--internal-first" 2190 g_blnInternalFirst = True 2200 2191 case "--internal-last" 2201 2192 g_blnInternalFirst = False … … 2277 2268 CheckForPython strOptPython 2278 2269 end if 2279 if g_blnInternalMode then2280 EnvPrint "call " & g_strPathDev & "/env.cmd %1 %2 %3 %4 %5 %6 %7 %8 %9"2281 end if2282 2270 2283 2271 Print ""
Note:
See TracChangeset
for help on using the changeset viewer.