2 @REM This stand
-alone program is typically called by the edksetup.bat file
,
3 @REM however it may be executed directly from the BaseTools project folder
4 @REM
if the file is
not executed within a WORKSPACE\BaseTools folder.
6 @REM Copyright
(c
) 2006 - 2013, Intel Corporation. All rights reserved.
<BR
>
8 @REM This program and the accompanying materials are licensed and made available
9 @REM under the terms and conditions of the BSD License which accompanies this
10 @REM distribution. The full text of the license may be found at
:
11 @REM http
://opensource.org
/licenses
/bsd
-license.php
13 @REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN
"AS IS" BASIS
,
14 @REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND
, EITHER EXPRESS OR
21 @REM ##############################################################
22 @REM # You should
not have to modify anything below this line
25 if /I
"%1"=="-h" goto Usage
26 if /I
"%1"=="-help" goto Usage
27 if /I
"%1"=="--help" goto Usage
28 if /I
"%1"=="/h" goto Usage
29 if /I
"%1"=="/help" goto Usage
30 if /I
"%1"=="/?" goto Usage
34 if "%1"=="" goto setup_workspace
35 if /I
"%1"=="--nt32" (
36 @REM Ignore
--nt32 flag
40 if /I
"%1"=="Reconfig" (
45 if /I
"%1"=="Rebuild" (
50 if /I
"%1"=="ForceRebuild" (
52 set FORCE_REBUILD
=TRUE
55 if "%1"=="" goto setup_workspace
57 if not defined BASE_TOOLS_PATH
(
58 if exist %1\Source
set BASE_TOOLS_PATH
=%1
62 if not defined EDK_TOOLS_PATH
(
63 if exist %1\Bin\Win32
set EDK_TOOLS_PATH
=%1
68 echo !!! ERROR
!!! Unknown argument
, %1 !!!
73 echo !!! ERROR
!!! Unknown argument
, %1 !!!
81 @REM Check the required system environment variables
86 REM check the EDK_TOOLS_PATH
88 if not defined EDK_TOOLS_PATH
goto no_EDK_TOOLS_PATH
89 if exist %EDK_TOOLS_PATH% goto set_PATH
92 if not defined WORKSPACE
(
93 if defined BASE_TOOLS_PATH
(
94 set EDK_TOOLS_PATH
=%BASE_TOOLS_PATH%
98 echo !!! ERROR
!!! Neither BASE_TOOLS_PATH nor EDK_TOOLS_PATH are
set.
!!!
103 if exist %WORKSPACE%\BaseTools\Bin
(
104 set EDK_TOOLS_PATH
=%WORKSPACE%\BaseTools
108 echo !!! ERROR
!!! No tools
path available. Please
set EDK_TOOLS_PATH
!!!
115 if defined WORKSPACE_TOOLS_PATH
goto check_PATH
116 if not defined EDK_TOOLS_BIN
(
117 if exist %EDK_TOOLS_PATH%\Bin\Win32
(
118 set EDK_TOOLS_BIN
=%EDK_TOOLS_PATH%\Bin\Win32
121 echo !!! ERROR
!!! Cannot
find BaseTools Bin Win32
!!!
122 echo Please check the directory
%EDK_TOOLS_PATH%\Bin\Win32
123 echo Or configure EDK_TOOLS_BIN env to point Win32 directory.
128 set PATH=%EDK_TOOLS_BIN%;%PATH%
129 set WORKSPACE_TOOLS_PATH
=%EDK_TOOLS_PATH%
133 if "%EDK_TOOLS_PATH%"=="%WORKSPACE_TOOLS_PATH%" goto PATH_ok
134 if not defined EDK_TOOLS_BIN
(
135 if exist %EDK_TOOLS_PATH%\Bin\Win32
(
136 set EDK_TOOLS_BIN
=%EDK_TOOLS_PATH%\Bin\Win32
139 echo !!! ERROR
!!! Cannot
find BaseTools Bin Win32
!!!
140 echo Please check the directory
%EDK_TOOLS_PATH%\Bin\Win32
141 echo Or configure EDK_TOOLS_BIN env to point Win32 directory.
146 set PATH=%EDK_TOOLS_BIN%;%PATH%
147 set WORKSPACE_TOOLS_PATH
=%EDK_TOOLS_PATH%
148 echo Resetting the
PATH variable to include the EDK_TOOLS_PATH
for this session.
152 REM copy *.template to %CONF_PATH%
154 if not defined WORKSPACE
(
155 if defined RECONFIG
(
157 echo !!! WARNING
!!! WORKSPACE environment variable was
not set, cannot Reconfig
!!!
163 if not defined CONF_PATH
(
164 set CONF_PATH
=%WORKSPACE%\Conf
167 if NOT exist %CONF_PATH% (
168 if defined PACKAGES_PATH
(
169 for %%i IN
(%PACKAGES_PATH%) DO (
170 if exist %%~fi\Conf
(
171 set CONF_PATH
=%%i\Conf
179 if NOT exist %CONF_PATH% (
182 if defined RECONFIG
(
184 echo Over
-writing the
files in the CONF_PATH directory
185 echo using the default template
files
190 if NOT exist %CONF_PATH%\target.txt
(
191 echo copying ... target.template to
%CONF_PATH%\target.txt
192 if NOT exist %EDK_TOOLS_PATH%\Conf
\target.template
(
193 echo Error
: target.template is missing at folder
%EDK_TOOLS_PATH%\Conf\
195 copy %EDK_TOOLS_PATH%\Conf
\target.template
%CONF_PATH%\target.txt
> nul
197 if defined RECONFIG
echo over
-write ... target.template to
%CONF_PATH%\target.txt
198 if defined RECONFIG
copy /Y
%EDK_TOOLS_PATH%\Conf
\target.template
%CONF_PATH%\target.txt
> nul
201 if NOT exist %CONF_PATH%\tools_def.txt
(
202 echo copying ... tools_def.template to
%CONF_PATH%\tools_def.txt
203 if NOT exist %EDK_TOOLS_PATH%\Conf
\tools_def.template
(
204 echo Error
: tools_def.template is missing at folder
%EDK_TOOLS_PATH%\Conf\
206 copy %EDK_TOOLS_PATH%\Conf
\tools_def.template
%CONF_PATH%\tools_def.txt
> nul
208 if defined RECONFIG
echo over
-write ... tools_def.template to
%CONF_PATH%\tools_def.txt
209 if defined RECONFIG
copy /Y
%EDK_TOOLS_PATH%\Conf
\tools_def.template
%CONF_PATH%\tools_def.txt
> nul
212 if NOT exist %CONF_PATH%\build_rule.txt
(
213 echo copying ... build_rule.template to
%CONF_PATH%\build_rule.txt
214 if NOT exist %EDK_TOOLS_PATH%\Conf
\build_rule.template
(
215 echo Error
: build_rule.template is missing at folder
%EDK_TOOLS_PATH%\Conf\
217 copy %EDK_TOOLS_PATH%\Conf
\build_rule.template
%CONF_PATH%\build_rule.txt
> nul
219 if defined RECONFIG
echo over
-write ... build_rule.template to
%CONF_PATH%\build_rule.txt
220 if defined RECONFIG
copy /Y
%EDK_TOOLS_PATH%\Conf
\build_rule.template
%CONF_PATH%\build_rule.txt
> nul
225 if defined WORKSPACE
(
226 echo WORKSPACE
= %WORKSPACE%
228 if defined PACKAGES_PATH
(
229 echo PACKAGES_PATH
= %PACKAGES_PATH%
231 echo EDK_TOOLS_PATH
= %EDK_TOOLS_PATH%
232 if defined BASE_TOOLS_PATH
(
233 echo BASE_TOOLS_PATH
= %BASE_TOOLS_PATH%
235 if defined EDK_TOOLS_BIN
(
236 echo EDK_TOOLS_BIN
= %EDK_TOOLS_BIN%
238 echo CONF_PATH
= %CONF_PATH%
244 @REM Test
if we are going to have to
do a build
246 if defined FORCE_REBUILD
goto check_build_environment
247 if defined REBUILD
goto check_build_environment
248 if not exist "%EDK_TOOLS_PATH%" goto check_build_environment
250 IF NOT EXIST "%EDK_TOOLS_BIN%\BootSectImage.exe" goto check_build_environment
251 IF NOT EXIST "%EDK_TOOLS_BIN%\build.exe" goto check_build_environment
252 IF NOT EXIST "%EDK_TOOLS_BIN%\EfiLdrImage.exe" goto check_build_environment
253 IF NOT EXIST "%EDK_TOOLS_BIN%\EfiRom.exe" goto check_build_environment
254 IF NOT EXIST "%EDK_TOOLS_BIN%\GenBootSector.exe" goto check_build_environment
255 IF NOT EXIST "%EDK_TOOLS_BIN%\GenFds.exe" goto check_build_environment
256 IF NOT EXIST "%EDK_TOOLS_BIN%\GenFfs.exe" goto check_build_environment
257 IF NOT EXIST "%EDK_TOOLS_BIN%\GenFv.exe" goto check_build_environment
258 IF NOT EXIST "%EDK_TOOLS_BIN%\GenFw.exe" goto check_build_environment
259 IF NOT EXIST "%EDK_TOOLS_BIN%\GenPage.exe" goto check_build_environment
260 IF NOT EXIST "%EDK_TOOLS_BIN%\GenSec.exe" goto check_build_environment
261 IF NOT EXIST "%EDK_TOOLS_BIN%\GenVtf.exe" goto check_build_environment
262 IF NOT EXIST "%EDK_TOOLS_BIN%\Split.exe" goto check_build_environment
263 IF NOT EXIST "%EDK_TOOLS_BIN%\TargetTool.exe" goto check_build_environment
264 IF NOT EXIST "%EDK_TOOLS_BIN%\TianoCompress.exe" goto check_build_environment
265 IF NOT EXIST "%EDK_TOOLS_BIN%\Trim.exe" goto check_build_environment
266 IF NOT EXIST "%EDK_TOOLS_BIN%\VfrCompile.exe" goto check_build_environment
267 IF NOT EXIST "%EDK_TOOLS_BIN%\VolInfo.exe" goto check_build_environment
271 :check_build_environment
273 if not defined FORCE_REBUILD
(
275 echo Rebuilding of tools is
not required. Binaries of the latest
,
276 echo tested versions of the tools have been tested and included in the
277 echo EDK II repository.
279 echo If you really want to build the tools
, use the ForceRebuild option.
284 if not defined BASE_TOOLS_PATH
(
285 if not exist "Source\C\Makefile" (
286 if not exist "%EDK_TOOLS_PATH%\Source\C\Makefile" goto no_source_files
287 set BASE_TOOLS_PATH
=%EDK_TOOLS_PATH%
289 set BASE_TOOLS_PATH
=%CD%
292 set PATH=%BASE_TOOLS_PATH%\Bin\Win32
;%PATH%
294 set BASETOOLS_PYTHON_SOURCE
=%BASE_TOOLS_PATH%\Source\Python
295 set PYTHONPATH
=%BASETOOLS_PYTHON_SOURCE%;%PYTHONPATH%
297 if not defined PYTHON_HOME
(
298 if defined PYTHONHOME
(
299 set PYTHON_HOME
=%PYTHONHOME%
302 echo !!! ERROR
!!! PYTHON_HOME is required to build or execute the tools
, please
set it.
!!!
308 @REM We have Python
, now test
for FreezePython application
309 if not defined PYTHON_FREEZER_PATH
(
310 @REM see
if we can
find FreezePython.ex
311 if exist "%PYTHON_HOME%\Tools\cx_Freeze-3.0.3\FreezePython.exe" (
312 set PYTHON_FREEZER_PATH
=%PYTHON_HOME%\Tools\cx_Freeze
-3.0.3
314 if exist "%PYTHON_HOME%\Tools\cx_Freeze\FreezePython.exe" (
315 set PYTHON_FREEZER_PATH
=%PYTHON_HOME%\Tools\cx_Freeze
317 if exist "C:\cx_Freeze\FreezePython.exe" (
318 set PYTHON_FREEZER_PATH
=C
:\cx_Freeze
320 if exist "C:\cx_Freeze-3.0.3" (
321 set PYTHON_FREEZER_PATH
=C
:\cx_Freeze
-3.0.3
323 if not defined PYTHON_FREEZER_PATH
(
325 echo !!! WARNING
!!! Will
not be able to compile Python programs to .exe
326 echo Will setup environment to
run Python scripts directly.
328 set "PATH=%BASETOOLS_PYTHON_SOURCE%\Trim;%PATH%"
329 set "PATH=%BASETOOLS_PYTHON_SOURCE%\GenFds;%PATH%"
330 set "PATH=%BASETOOLS_PYTHON_SOURCE%\build;%PATH%"
331 set PATHEXT
=%PATHEXT%;.py
335 echo BASE_TOOLS_PATH
= %BASE_TOOLS_PATH%
336 echo PYTHON_PATH
= %PYTHON_PATH%
337 echo PYTHON_FREEZER_PATH
= %PYTHON_FREEZER_PATH%
340 call "%EDK_TOOLS_PATH%\get_vsvars.bat"
341 if not defined VCINSTALLDIR
(
343 @
echo !!! ERROR
!!!! Cannot
find Visual Studio
, required to build C tools
!!!
348 :VisualStudioAvailable
349 if not defined FORCE_REBUILD
goto IncrementalBuild
355 del /f
/q
%BASE_TOOLS_PATH%\Bin\Win32\
*.
*
357 @REM Let CleanAndBuild fall through to IncrementalBuild
366 if defined PYTHON_FREEZER_PATH
(
367 echo BUILDING PYTHON TOOLS
374 echo !!! WARNING
!!! Cannot make executable from Python code
, executing python scripts instead
!!!
382 echo !!! ERROR
!!! Cannot build BaseTools applications
- no source directory located
!!!
388 echo Usage
: "%0 [-h | -help | --help | /h | /help | /?] [ Rebuild | ForceRebuild ] [Reconfig] [base_tools_path [edk_tools_path]]"
390 @
echo base_tools_path BaseTools project
path, BASE_TOOLS_PATH will be
set to this
path.
391 @
echo edk_tools_path EDK_TOOLS_PATH will be
set to this
path.
392 @
echo Rebuild
If sources are available perform an Incremental build
, only
393 @
echo build those updated tools.
394 @
echo ForceRebuild
If sources are available
, rebuild all tools regardless of
395 @
echo whether they have been updated or
not.
396 @
echo Reconfig Reinstall target.txt
, tools_def.txt and build_rule.txt.