]> git.proxmox.com Git - mirror_edk2.git/blobdiff - edksetup.bat
BaseTools: Library hashing fix and optimization for --hash feature
[mirror_edk2.git] / edksetup.bat
index 6c8c0aa97f4cde347aa4647ef7d9ca1e3d621329..662ffc00605909cb82b8f834d13636b8bfe4cb54 100755 (executable)
@@ -3,21 +3,15 @@
 @REM\r
 @REM Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>\r
 @REM (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>\r
-@REM This program and the accompanying materials\r
-@REM are licensed and made available under the terms and conditions of the BSD License\r
-@REM which accompanies this distribution.  The full text of the license may be found at\r
-@REM http://opensource.org/licenses/bsd-license.php\r
-@REM\r
-@REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-@REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+@REM SPDX-License-Identifier: BSD-2-Clause-Patent\r
 @REM\r
 \r
 @REM set CYGWIN_HOME=C:\cygwin\r
 \r
-@REM usage: \r
+@REM usage:\r
 @REM   edksetup.bat [--nt32] [AntBuild] [Rebuild] [ForceRebuild] [Reconfig]\r
 @REM if the argument, skip is present, only the paths and the\r
-@REM test and set of environment settings are performed. \r
+@REM test and set of environment settings are performed.\r
 \r
 @REM ##############################################################\r
 @REM # You should not have to modify anything below this line\r
@@ -42,11 +36,8 @@ if %WORKSPACE% == %CD% (
 \r
 :SetWorkSpace\r
 @REM set new workspace\r
-@REM clear EFI_SOURCE and EDK_SOURCE for the new workspace\r
 if not defined WORKSPACE (\r
   set WORKSPACE=%CD%\r
-  set EFI_SOURCE=\r
-  set EDK_SOURCE=\r
 )\r
 \r
 :ParseArgs\r
@@ -59,28 +50,40 @@ if /I "%1"=="/help" goto Usage
 \r
 if /I "%1"=="NewBuild" shift\r
 if not defined EDK_TOOLS_PATH (\r
-  if exist %WORKSPACE%\BaseTools (\r
-    set EDK_TOOLS_PATH=%WORKSPACE%\BaseTools\r
-  ) else (\r
-    if defined PACKAGES_PATH (\r
-      for %%i IN (%PACKAGES_PATH%) DO (\r
-        if exist %%~fi\BaseTools (\r
-          set EDK_TOOLS_PATH=%%~fi\BaseTools\r
-          goto checkNt32Flag\r
-        )\r
+  goto SetEdkToolsPath\r
+) else (\r
+  goto checkNt32Flag\r
+)\r
+\r
+:SetEdkToolsPath\r
+if %WORKSPACE:~-1% EQU \ (\r
+  @set EDK_BASETOOLS=%WORKSPACE%BaseTools\r
+) else (\r
+  @set EDK_BASETOOLS=%WORKSPACE%\BaseTools\r
+)\r
+if exist %EDK_BASETOOLS% (\r
+  set EDK_TOOLS_PATH=%EDK_BASETOOLS%\r
+  set EDK_BASETOOLS=\r
+) else (\r
+  if defined PACKAGES_PATH (\r
+    for %%i IN (%PACKAGES_PATH%) DO (\r
+      if exist %%~fi\BaseTools (\r
+        set EDK_TOOLS_PATH=%%~fi\BaseTools\r
+        goto checkNt32Flag\r
       )\r
-    ) else (\r
-      echo.\r
-      echo !!! ERROR !!! Cannot find BaseTools !!!\r
-      echo. \r
-      goto BadBaseTools\r
     )\r
+  ) else (\r
+    echo.\r
+    echo !!! ERROR !!! Cannot find BaseTools !!!\r
+    echo.\r
+    goto BadBaseTools\r
   )\r
 )\r
-if exist %EDK_TOOLS_PATH%\Source set BASE_TOOLS_PATH=%EDK_TOOLS_PATH%\r
 \r
 :checkNt32Flag\r
-@REM The Nt32 Emluation Platform requires Microsoft Libraries\r
+if exist %EDK_TOOLS_PATH%\Source set BASE_TOOLS_PATH=%EDK_TOOLS_PATH%\r
+\r
+@REM The Nt32 Emulation Platform requires Microsoft Libraries\r
 @REM and headers to interface with Windows.\r
 if /I "%1"=="--nt32" (\r
   if /I "%2"=="X64" (\r
@@ -140,11 +143,13 @@ if defined CYGWIN_HOME (
 )\r
 \r
 :cygwin_done\r
+if /I "%1"=="Rebuild" shift\r
+if /I "%1"=="ForceRebuild" shift\r
 if "%1"=="" goto end\r
 \r
 :Usage\r
   @echo.\r
-  @echo  Usage: "%0 [-h | -help | --help | /h | /help | /?] [--nt32 [X64]] [Reconfig]"\r
+  @echo  Usage: "%0 [-h | -help | --help | /h | /help | /?] [--nt32 [X64]] [Reconfig] [Rebuild] [ForceRebuild]"\r
   @echo         --nt32 [X64]   If a compiler tool chain is not available in the\r
   @echo                        environment, call a script to attempt to set one up.\r
   @echo                        This flag is only required if building the\r
@@ -156,6 +161,8 @@ if "%1"=="" goto end
   @echo                        rebuild.\r
   @echo.\r
   @echo         Reconfig       Reinstall target.txt, tools_def.txt and build_rule.txt.\r
+  @echo         Rebuild        Perform incremental rebuild of BaseTools binaries.\r
+  @echo         ForceRebuild   Force a full rebuild of BaseTools binaries.\r
   @echo.\r
   @echo  Note that target.template, tools_def.template and build_rules.template\r
   @echo  will only be copied to target.txt, tools_def.txt and build_rule.txt\r
@@ -165,4 +172,3 @@ if "%1"=="" goto end
 \r
 :end\r
   popd\r
-\r