X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=edksetup.bat;h=57b5a8c8684ed65902ad0e96966425373ac0946e;hp=7aa167549bb2d88c08723338641149a43d4dcf0b;hb=5866d49923967b86e2921672cd83b3f506b45e3d;hpb=4e908975c645bedd40ac77497d42629ef3cf9fc5 diff --git a/edksetup.bat b/edksetup.bat index 7aa167549b..57b5a8c868 100755 --- a/edksetup.bat +++ b/edksetup.bat @@ -14,10 +14,10 @@ @REM set CYGWIN_HOME=C:\cygwin -@REM usage: +@REM usage: @REM edksetup.bat [--nt32] [AntBuild] [Rebuild] [ForceRebuild] [Reconfig] @REM if the argument, skip is present, only the paths and the -@REM test and set of environment settings are performed. +@REM test and set of environment settings are performed. @REM ############################################################## @REM # You should not have to modify anything below this line @@ -42,11 +42,8 @@ if %WORKSPACE% == %CD% ( :SetWorkSpace @REM set new workspace -@REM clear EFI_SOURCE and EDK_SOURCE for the new workspace if not defined WORKSPACE ( set WORKSPACE=%CD% - set EFI_SOURCE= - set EDK_SOURCE= ) :ParseArgs @@ -59,22 +56,33 @@ if /I "%1"=="/help" goto Usage if /I "%1"=="NewBuild" shift if not defined EDK_TOOLS_PATH ( - if exist %WORKSPACE%\BaseTools ( - set EDK_TOOLS_PATH=%WORKSPACE%\BaseTools - ) else ( - if defined PACKAGES_PATH ( - for %%i IN (%PACKAGES_PATH%) DO ( - if exist %%~fi\BaseTools ( - set EDK_TOOLS_PATH=%%~fi\BaseTools - goto checkNt32Flag - ) + goto SetEdkToolsPath +) else ( + goto checkNt32Flag +) + +:SetEdkToolsPath +if %WORKSPACE:~-1% EQU \ ( + @set EDK_BASETOOLS=%WORKSPACE%BaseTools +) else ( + @set EDK_BASETOOLS=%WORKSPACE%\BaseTools +) +if exist %EDK_BASETOOLS% ( + set EDK_TOOLS_PATH=%EDK_BASETOOLS% + set EDK_BASETOOLS= +) else ( + if defined PACKAGES_PATH ( + for %%i IN (%PACKAGES_PATH%) DO ( + if exist %%~fi\BaseTools ( + set EDK_TOOLS_PATH=%%~fi\BaseTools + goto checkNt32Flag ) - ) else ( - echo. - echo !!! ERROR !!! Cannot find BaseTools !!! - echo. - goto BadBaseTools ) + ) else ( + echo. + echo !!! ERROR !!! Cannot find BaseTools !!! + echo. + goto BadBaseTools ) ) @@ -141,11 +149,13 @@ if defined CYGWIN_HOME ( ) :cygwin_done +if /I "%1"=="Rebuild" shift +if /I "%1"=="ForceRebuild" shift if "%1"=="" goto end :Usage @echo. - @echo Usage: "%0 [-h | -help | --help | /h | /help | /?] [--nt32 [X64]] [Reconfig]" + @echo Usage: "%0 [-h | -help | --help | /h | /help | /?] [--nt32 [X64]] [Reconfig] [Rebuild] [ForceRebuild]" @echo --nt32 [X64] If a compiler tool chain is not available in the @echo environment, call a script to attempt to set one up. @echo This flag is only required if building the @@ -157,6 +167,8 @@ if "%1"=="" goto end @echo rebuild. @echo. @echo Reconfig Reinstall target.txt, tools_def.txt and build_rule.txt. + @echo Rebuild Perform incremental rebuild of BaseTools binaries. + @echo ForceRebuild Force a full rebuild of BaseTools binaries. @echo. @echo Note that target.template, tools_def.template and build_rules.template @echo will only be copied to target.txt, tools_def.txt and build_rule.txt @@ -166,4 +178,3 @@ if "%1"=="" goto end :end popd -