X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=BaseTools%2Ftoolsetup.bat;h=51c276060ddb5be71bed57b335ca8cde716ebac8;hp=21f5b76e4b1c641755ff1ea26b62297f79a85246;hb=9a6b445bc2e6e2db6f67ab3cc425d5831aa1b7c8;hpb=7419aedd93132f2dfc91e7bf3634fba7e0842c7b diff --git a/BaseTools/toolsetup.bat b/BaseTools/toolsetup.bat index 21f5b76e4b..51c276060d 100755 --- a/BaseTools/toolsetup.bat +++ b/BaseTools/toolsetup.bat @@ -3,7 +3,8 @@ @REM however it may be executed directly from the BaseTools project folder @REM if the file is not executed within a WORKSPACE\BaseTools folder. @REM -@REM Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.
+@REM Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved.
+@REM (C) Copyright 2016 Hewlett Packard Enterprise Development LP
@REM @REM This program and the accompanying materials are licensed and made available @REM under the terms and conditions of the BSD License which accompanies this @@ -33,6 +34,9 @@ if /I "%1"=="/?" goto Usage :loop if "%1"=="" goto setup_workspace if /I "%1"=="--nt32" ( + if /I "%2" == "X64" ( + shift + ) @REM Ignore --nt32 flag shift goto loop @@ -114,15 +118,13 @@ if /I "%1"=="/?" goto Usage :set_PATH if defined WORKSPACE_TOOLS_PATH goto check_PATH if not defined EDK_TOOLS_BIN ( - if exist %EDK_TOOLS_PATH%\Bin\Win32 ( - set EDK_TOOLS_BIN=%EDK_TOOLS_PATH%\Bin\Win32 - ) else ( + set EDK_TOOLS_BIN=%EDK_TOOLS_PATH%\Bin\Win32 + if not exist %EDK_TOOLS_PATH%\Bin\Win32 ( echo. echo !!! ERROR !!! Cannot find BaseTools Bin Win32!!! echo Please check the directory %EDK_TOOLS_PATH%\Bin\Win32 echo Or configure EDK_TOOLS_BIN env to point Win32 directory. echo. - goto end ) ) set PATH=%EDK_TOOLS_BIN%;%PATH% @@ -132,15 +134,13 @@ if /I "%1"=="/?" goto Usage :check_PATH if "%EDK_TOOLS_PATH%"=="%WORKSPACE_TOOLS_PATH%" goto PATH_ok if not defined EDK_TOOLS_BIN ( - if exist %EDK_TOOLS_PATH%\Bin\Win32 ( - set EDK_TOOLS_BIN=%EDK_TOOLS_PATH%\Bin\Win32 - ) else ( + set EDK_TOOLS_BIN=%EDK_TOOLS_PATH%\Bin\Win32 + if not exist %EDK_TOOLS_PATH%\Bin\Win32 ( echo. echo !!! ERROR !!! Cannot find BaseTools Bin Win32!!! echo Please check the directory %EDK_TOOLS_PATH%\Bin\Win32 echo Or configure EDK_TOOLS_BIN env to point Win32 directory. echo. - goto end ) ) set PATH=%EDK_TOOLS_BIN%;%PATH% @@ -160,6 +160,14 @@ if not defined WORKSPACE ( goto skip_reconfig ) +IF NOT exist "%EDK_TOOLS_PATH%\set_vsprefix_envs.bat" ( + @echo. + @echo !!! ERROR !!! The set_vsprefix_envs.bat was not found !!! + @echo. + goto end +) +call %EDK_TOOLS_PATH%\set_vsprefix_envs.bat + if not defined CONF_PATH ( set CONF_PATH=%WORKSPACE%\Conf ) @@ -246,6 +254,7 @@ echo. if defined FORCE_REBUILD goto check_build_environment if defined REBUILD goto check_build_environment if not exist "%EDK_TOOLS_PATH%" goto check_build_environment +if not exist "%EDK_TOOLS_BIN%" goto check_build_environment IF NOT EXIST "%EDK_TOOLS_BIN%\BootSectImage.exe" goto check_c_tools IF NOT EXIST "%EDK_TOOLS_BIN%\EfiLdrImage.exe" goto check_c_tools @@ -268,7 +277,7 @@ goto check_python_tools echo. echo !!! ERROR !!! Binary C tools are missing. They are requried to be built from BaseTools Source. echo. - goto end + goto check_build_environment :check_python_tools IF NOT EXIST "%EDK_TOOLS_BIN%\build.exe" goto check_build_environment @@ -295,7 +304,7 @@ goto end set PYTHON_HOME=%PYTHONHOME% ) else ( echo. - echo !!! ERROR !!! Binary python tools are missing. PYTHON_HOME environment variable is not set. + echo !!! ERROR !!! Binary python tools are missing. PYTHON_HOME environment variable is not set. echo PYTHON_HOME is required to build or execute the python tools. echo. goto end