X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=BaseTools%2Ftoolsetup.bat;h=58fd26a4b585ab0ffce782d4974bc978cb48a767;hp=a64938db609b123824899e56361a77f24e748766;hb=HEAD;hpb=ae5cc3c30301aebb59e817c09762dc6ec8009621 diff --git a/BaseTools/toolsetup.bat b/BaseTools/toolsetup.bat index a64938db60..58fd26a4b5 100755 --- a/BaseTools/toolsetup.bat +++ b/BaseTools/toolsetup.bat @@ -1,22 +1,17 @@ @REM @file -@REM This stand-alone program is typically called by the edksetup.bat file, +@REM This stand-alone program is typically called by the edksetup.bat file, @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 - 2019, 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 -@REM distribution. The full text of the license may be found at: -@REM http://opensource.org/licenses/bsd-license.php -@REM -@REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -@REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR -@REM IMPLIED. +@REM SPDX-License-Identifier: BSD-2-Clause-Patent @REM @echo off pushd . +set SCRIPT_ERROR=0 @REM ############################################################## @REM # You should not have to modify anything below this line @@ -32,11 +27,6 @@ if /I "%1"=="/?" goto Usage :loop if "%1"=="" goto setup_workspace - if /I "%1"=="--nt32" ( - @REM Ignore --nt32 flag - shift - goto loop - ) if /I "%1"=="Reconfig" ( shift set RECONFIG=TRUE @@ -52,6 +42,36 @@ if /I "%1"=="/?" goto Usage set FORCE_REBUILD=TRUE goto loop ) + if /I "%1"=="VS2019" ( + shift + set VS2019=TRUE + set VSTool=VS2019 + goto loop + ) + if /I "%1"=="VS2017" ( + shift + set VS2017=TRUE + set VSTool=VS2017 + goto loop + ) + if /I "%1"=="VS2015" ( + shift + set VS2015=TRUE + set VSTool=VS2015 + goto loop + ) + if /I "%1"=="VS2013" ( + shift + set VS2013=TRUE + set VSTool=VS2013 + goto loop + ) + if /I "%1"=="VS2012" ( + shift + set VS2012=TRUE + set VSTool=VS2012 + goto loop + ) if "%1"=="" goto setup_workspace if exist %1 ( if not defined BASE_TOOLS_PATH ( @@ -114,15 +134,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 + echo. ) ) set PATH=%EDK_TOOLS_BIN%;%PATH% @@ -132,15 +150,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 + echo. ) ) set PATH=%EDK_TOOLS_BIN%;%PATH% @@ -160,6 +176,36 @@ 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 +) +if defined VS2019 ( + call %EDK_TOOLS_PATH%\set_vsprefix_envs.bat VS2019 +) else if defined VS2017 ( + call %EDK_TOOLS_PATH%\set_vsprefix_envs.bat VS2017 +) else if defined VS2015 ( + call %EDK_TOOLS_PATH%\set_vsprefix_envs.bat VS2015 + call %EDK_TOOLS_PATH%\get_vsvars.bat VS2015 +) else if defined VS2013 ( + call %EDK_TOOLS_PATH%\set_vsprefix_envs.bat VS2013 + call %EDK_TOOLS_PATH%\get_vsvars.bat VS2013 +) else if defined VS2012 ( + call %EDK_TOOLS_PATH%\set_vsprefix_envs.bat VS2012 + call %EDK_TOOLS_PATH%\get_vsvars.bat VS2012 +) else ( + call %EDK_TOOLS_PATH%\set_vsprefix_envs.bat + call %EDK_TOOLS_PATH%\get_vsvars.bat +) +if %SCRIPT_ERROR% NEQ 0 ( + @echo. + @echo !!! ERROR !!! %VSTool% is not installed !!! + @echo. + goto end +) + if not defined CONF_PATH ( set CONF_PATH=%WORKSPACE%\Conf ) @@ -174,14 +220,14 @@ if NOT exist %CONF_PATH% ( ) ) ) - + :CopyConf if NOT exist %CONF_PATH% ( mkdir %CONF_PATH% ) else ( if defined RECONFIG ( echo. - echo Over-writing the files in the CONF_PATH directory + echo Overwriting the files in the CONF_PATH directory echo using the default template files echo. ) @@ -194,7 +240,7 @@ if NOT exist %CONF_PATH%\target.txt ( ) copy %EDK_TOOLS_PATH%\Conf\target.template %CONF_PATH%\target.txt > nul ) else ( - if defined RECONFIG echo over-write ... target.template to %CONF_PATH%\target.txt + if defined RECONFIG echo overwrite ... target.template to %CONF_PATH%\target.txt if defined RECONFIG copy /Y %EDK_TOOLS_PATH%\Conf\target.template %CONF_PATH%\target.txt > nul ) @@ -205,7 +251,7 @@ if NOT exist %CONF_PATH%\tools_def.txt ( ) copy %EDK_TOOLS_PATH%\Conf\tools_def.template %CONF_PATH%\tools_def.txt > nul ) else ( - if defined RECONFIG echo over-write ... tools_def.template to %CONF_PATH%\tools_def.txt + if defined RECONFIG echo overwrite ... tools_def.template to %CONF_PATH%\tools_def.txt if defined RECONFIG copy /Y %EDK_TOOLS_PATH%\Conf\tools_def.template %CONF_PATH%\tools_def.txt > nul ) @@ -246,40 +292,26 @@ 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_build_environment -IF NOT EXIST "%EDK_TOOLS_BIN%\build.exe" goto check_build_environment -IF NOT EXIST "%EDK_TOOLS_BIN%\EfiLdrImage.exe" goto check_build_environment -IF NOT EXIST "%EDK_TOOLS_BIN%\EfiRom.exe" goto check_build_environment -IF NOT EXIST "%EDK_TOOLS_BIN%\GenBootSector.exe" goto check_build_environment -IF NOT EXIST "%EDK_TOOLS_BIN%\GenFds.exe" goto check_build_environment -IF NOT EXIST "%EDK_TOOLS_BIN%\GenFfs.exe" goto check_build_environment -IF NOT EXIST "%EDK_TOOLS_BIN%\GenFv.exe" goto check_build_environment -IF NOT EXIST "%EDK_TOOLS_BIN%\GenFw.exe" goto check_build_environment -IF NOT EXIST "%EDK_TOOLS_BIN%\GenPage.exe" goto check_build_environment -IF NOT EXIST "%EDK_TOOLS_BIN%\GenSec.exe" goto check_build_environment -IF NOT EXIST "%EDK_TOOLS_BIN%\GenVtf.exe" goto check_build_environment -IF NOT EXIST "%EDK_TOOLS_BIN%\Split.exe" goto check_build_environment -IF NOT EXIST "%EDK_TOOLS_BIN%\TargetTool.exe" goto check_build_environment -IF NOT EXIST "%EDK_TOOLS_BIN%\TianoCompress.exe" goto check_build_environment -IF NOT EXIST "%EDK_TOOLS_BIN%\Trim.exe" goto check_build_environment -IF NOT EXIST "%EDK_TOOLS_BIN%\VfrCompile.exe" goto check_build_environment -IF NOT EXIST "%EDK_TOOLS_BIN%\VolInfo.exe" goto check_build_environment +IF NOT EXIST "%EDK_TOOLS_BIN%\EfiRom.exe" goto check_c_tools +IF NOT EXIST "%EDK_TOOLS_BIN%\GenFfs.exe" goto check_c_tools +IF NOT EXIST "%EDK_TOOLS_BIN%\GenFv.exe" goto check_c_tools +IF NOT EXIST "%EDK_TOOLS_BIN%\GenFw.exe" goto check_c_tools +IF NOT EXIST "%EDK_TOOLS_BIN%\GenSec.exe" goto check_c_tools +IF NOT EXIST "%EDK_TOOLS_BIN%\TianoCompress.exe" goto check_c_tools +IF NOT EXIST "%EDK_TOOLS_BIN%\VfrCompile.exe" goto check_c_tools +IF NOT EXIST "%EDK_TOOLS_BIN%\VolInfo.exe" goto check_c_tools -goto end +goto check_build_environment -:check_build_environment +:check_c_tools + echo. + echo !!! ERROR !!! Binary C tools are missing. They are required to be built from BaseTools Source. + echo. - if not defined FORCE_REBUILD ( - echo. - echo Rebuilding of tools is not required. Binaries of the latest, - echo tested versions of the tools have been tested and included in the - echo EDK II repository. - echo. - echo If you really want to build the tools, use the ForceRebuild option. - echo. - goto end - ) +:check_build_environment + set PYTHONHASHSEED=1 if not defined BASE_TOOLS_PATH ( if not exist "Source\C\Makefile" ( @@ -289,63 +321,130 @@ goto end set BASE_TOOLS_PATH=%CD% ) ) - set PATH=%BASE_TOOLS_PATH%\Bin\Win32;%PATH% - - set BASETOOLS_PYTHON_SOURCE=%BASE_TOOLS_PATH%\Source\Python - set PYTHONPATH=%BASETOOLS_PYTHON_SOURCE%;%PYTHONPATH% - if not defined PYTHON_HOME ( - if defined PYTHONHOME ( - set PYTHON_HOME=%PYTHONHOME% - ) else ( +:defined_python +if defined PYTHON_COMMAND if not defined PYTHON3_ENABLE ( + goto check_python_available +) +if defined PYTHON3_ENABLE ( + if "%PYTHON3_ENABLE%" EQU "TRUE" ( + set PYTHON_COMMAND=py -3 + goto check_python_available + ) else ( + goto check_python2 + ) +) +if not defined PYTHON_COMMAND if not defined PYTHON3_ENABLE ( + set PYTHON_COMMAND=py -3 + py -3 %BASE_TOOLS_PATH%\Tests\PythonTest.py >PythonCheck.txt 2>&1 + setlocal enabledelayedexpansion + set /p PythonCheck=<"PythonCheck.txt" + del PythonCheck.txt + if "!PythonCheck!" NEQ "TRUE" ( + if not defined PYTHON_HOME if not defined PYTHONHOME ( + endlocal + set PYTHON_COMMAND= echo. - echo !!! ERROR !!! PYTHON_HOME is required to build or execute the tools, please set it. !!! + echo !!! ERROR !!! Binary python tools are missing. + echo PYTHON_COMMAND, PYTHON3_ENABLE or PYTHON_HOME + echo Environment variable is not set successfully. + echo They is required to build or execute the python tools. echo. goto end + ) else ( + goto check_python2 ) + ) else ( + goto check_freezer_path ) +) - @REM We have Python, now test for FreezePython application - if not defined PYTHON_FREEZER_PATH ( - @REM see if we can find FreezePython.ex - if exist "%PYTHON_HOME%\Tools\cx_Freeze-3.0.3\FreezePython.exe" ( - set PYTHON_FREEZER_PATH=%PYTHON_HOME%\Tools\cx_Freeze-3.0.3 - ) - if exist "%PYTHON_HOME%\Tools\cx_Freeze\FreezePython.exe" ( - set PYTHON_FREEZER_PATH=%PYTHON_HOME%\Tools\cx_Freeze - ) - if exist "C:\cx_Freeze\FreezePython.exe" ( - set PYTHON_FREEZER_PATH=C:\cx_Freeze - ) - if exist "C:\cx_Freeze-3.0.3" ( - set PYTHON_FREEZER_PATH=C:\cx_Freeze-3.0.3 - ) - if not defined PYTHON_FREEZER_PATH ( - echo. - echo !!! WARNING !!! Will not be able to compile Python programs to .exe - echo Will setup environment to run Python scripts directly. - echo. - set "PATH=%BASETOOLS_PYTHON_SOURCE%\Trim;%PATH%" - set "PATH=%BASETOOLS_PYTHON_SOURCE%\GenFds;%PATH%" - set "PATH=%BASETOOLS_PYTHON_SOURCE%\build;%PATH%" - set PATHEXT=%PATHEXT%;.py - ) +:check_python2 +endlocal +if defined PYTHON_HOME ( + if EXIST "%PYTHON_HOME%" ( + set PYTHON_COMMAND=%PYTHON_HOME%\python.exe + goto check_python_available ) - - echo BASE_TOOLS_PATH = %BASE_TOOLS_PATH% - echo PYTHON_PATH = %PYTHON_PATH% - echo PYTHON_FREEZER_PATH = %PYTHON_FREEZER_PATH% +) +if defined PYTHONHOME ( + if EXIST "%PYTHONHOME%" ( + set PYTHON_HOME=%PYTHONHOME% + set PYTHON_COMMAND=%PYTHON_HOME%\python.exe + goto check_python_available + ) +) +echo. +echo !!! ERROR !!! PYTHON_HOME is not defined or The value of this variable does not exist +echo. +goto end +:check_python_available +%PYTHON_COMMAND% %BASE_TOOLS_PATH%\Tests\PythonTest.py >PythonCheck.txt 2>&1 + setlocal enabledelayedexpansion + set /p PythonCheck=<"PythonCheck.txt" + del PythonCheck.txt + if "!PythonCheck!" NEQ "TRUE" ( + echo. + echo ! ERROR ! "%PYTHON_COMMAND%" is not installed or added to environment variables + echo. + goto end + ) else ( + goto check_freezer_path + ) + + + +:check_freezer_path + endlocal + + %PYTHON_COMMAND% -c "import edk2basetools" >NUL 2>NUL + if %ERRORLEVEL% EQU 0 ( + goto use_pip_basetools + ) else ( + REM reset ERRORLEVEL + type nul>nul + goto use_builtin_basetools + ) + +:use_builtin_basetools + @echo Using EDK2 in-source Basetools + if defined BASETOOLS_PYTHON_SOURCE goto print_python_info + set "PATH=%BASE_TOOLS_PATH%\BinWrappers\WindowsLike;%PATH%" + set BASETOOLS_PYTHON_SOURCE=%BASE_TOOLS_PATH%\Source\Python + set PYTHONPATH=%BASETOOLS_PYTHON_SOURCE%;%PYTHONPATH% + goto print_python_info + +:use_pip_basetools + @echo Using Pip Basetools + set "PATH=%BASE_TOOLS_PATH%\BinPipWrappers\WindowsLike;%PATH%" + set BASETOOLS_PYTHON_SOURCE=edk2basetools + goto print_python_info + +:print_python_info + echo PATH = %PATH% + if defined PYTHON3_ENABLE if "%PYTHON3_ENABLE%" EQU "TRUE" ( + echo PYTHON3_ENABLE = %PYTHON3_ENABLE% + echo PYTHON3 = %PYTHON_COMMAND% + ) else ( + echo PYTHON3_ENABLE = FALSE + echo PYTHON_COMMAND = %PYTHON_COMMAND% + ) + echo PYTHONPATH = %PYTHONPATH% echo. - call "%EDK_TOOLS_PATH%\get_vsvars.bat" +:VisualStudioAvailable + if not defined FORCE_REBUILD ( + if not defined REBUILD ( + goto end + ) + ) + if not defined VCINSTALLDIR ( @echo. @echo !!! ERROR !!!! Cannot find Visual Studio, required to build C tools !!! @echo. goto end ) - -:VisualStudioAvailable if not defined FORCE_REBUILD goto IncrementalBuild :CleanAndBuild @@ -362,18 +461,6 @@ goto end cd %BASE_TOOLS_PATH% call nmake c popd - - if defined PYTHON_FREEZER_PATH ( - echo BUILDING PYTHON TOOLS - pushd . - cd %BASE_TOOLS_PATH% - call nmake python - popd - ) else ( - echo. - echo !!! WARNING !!! Cannot make executable from Python code, executing python scripts instead !!! - echo. - ) goto end @@ -385,20 +472,31 @@ goto end :Usage @echo. - echo Usage: "%0 [-h | -help | --help | /h | /help | /?] [ Rebuild | ForceRebuild ] [Reconfig] [base_tools_path [edk_tools_path]]" + echo Usage: "%0 [-h | -help | --help | /h | /help | /?] [ Rebuild | ForceRebuild ] [Reconfig] [base_tools_path [edk_tools_path]] [VS2019] [VS2017] [VS2015] [VS2013] [VS2012]" @echo. - @echo base_tools_path BaseTools project path, BASE_TOOLS_PATH will be set to this path. + @echo base_tools_path BaseTools project path, BASE_TOOLS_PATH will be set to this path. @echo edk_tools_path EDK_TOOLS_PATH will be set to this path. - @echo Rebuild If sources are available perform an Incremental build, only + @echo Rebuild If sources are available perform an Incremental build, only @echo build those updated tools. - @echo ForceRebuild If sources are available, rebuild all tools regardless of + @echo ForceRebuild If sources are available, rebuild all tools regardless of @echo whether they have been updated or not. @echo Reconfig Reinstall target.txt, tools_def.txt and build_rule.txt. + @echo VS2012 Set the env for VS2012 build. + @echo VS2013 Set the env for VS2013 build. + @echo VS2015 Set the env for VS2015 build. + @echo VS2017 Set the env for VS2017 build. + @echo VS2019 Set the env for VS2019 build. @echo. :end set REBUILD= set FORCE_REBUILD= set RECONFIG= +set VS2019= +set VS2017= +set VS2015= +set VS2013= +set VS2012= +set VSTool= popd