]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - BaseTools/toolsetup.bat
SecurityPkg: Add TPM PTP support in TCG2 SMM.
[mirror_edk2.git] / BaseTools / toolsetup.bat
... / ...
CommitLineData
1@REM @file\r
2@REM This stand-alone program is typically called by the edksetup.bat file, \r
3@REM however it may be executed directly from the BaseTools project folder\r
4@REM if the file is not executed within a WORKSPACE\BaseTools folder.\r
5@REM\r
6@REM Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR>\r
7@REM\r
8@REM This program and the accompanying materials are licensed and made available\r
9@REM under the terms and conditions of the BSD License which accompanies this \r
10@REM distribution. The full text of the license may be found at:\r
11@REM http://opensource.org/licenses/bsd-license.php\r
12@REM\r
13@REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
14@REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR \r
15@REM IMPLIED.\r
16@REM\r
17\r
18@echo off\r
19pushd .\r
20\r
21@REM ##############################################################\r
22@REM # You should not have to modify anything below this line\r
23@REM #\r
24\r
25if /I "%1"=="-h" goto Usage\r
26if /I "%1"=="-help" goto Usage\r
27if /I "%1"=="--help" goto Usage\r
28if /I "%1"=="/h" goto Usage\r
29if /I "%1"=="/help" goto Usage\r
30if /I "%1"=="/?" goto Usage\r
31\r
32\r
33:loop\r
34 if "%1"=="" goto setup_workspace\r
35 if /I "%1"=="--nt32" (\r
36 @REM Ignore --nt32 flag\r
37 shift\r
38 goto loop\r
39 )\r
40 if /I "%1"=="Reconfig" (\r
41 shift\r
42 set RECONFIG=TRUE\r
43 goto loop\r
44 )\r
45 if /I "%1"=="Rebuild" (\r
46 shift\r
47 set REBUILD=TRUE\r
48 goto loop\r
49 )\r
50 if /I "%1"=="ForceRebuild" (\r
51 shift\r
52 set FORCE_REBUILD=TRUE\r
53 goto loop\r
54 )\r
55 if "%1"=="" goto setup_workspace\r
56 if exist %1 (\r
57 if not defined BASE_TOOLS_PATH (\r
58 if exist %1\Source set BASE_TOOLS_PATH=%1\r
59 shift\r
60 goto loop\r
61 )\r
62 if not defined EDK_TOOLS_PATH (\r
63 if exist %1\Bin\Win32 set EDK_TOOLS_PATH=%1\r
64 shift\r
65 goto loop\r
66 )\r
67 echo.\r
68 echo !!! ERROR !!! Unknown argument, %1 !!!\r
69 echo.\r
70 goto end\r
71 ) else (\r
72 echo.\r
73 echo !!! ERROR !!! Unknown argument, %1 !!!\r
74 echo.\r
75 goto end\r
76 )\r
77 goto loop\r
78\r
79\r
80@REM\r
81@REM Check the required system environment variables\r
82@REM\r
83\r
84:setup_workspace\r
85 REM\r
86 REM check the EDK_TOOLS_PATH\r
87 REM\r
88 if not defined EDK_TOOLS_PATH goto no_EDK_TOOLS_PATH\r
89 if exist %EDK_TOOLS_PATH% goto set_PATH\r
90\r
91:no_EDK_TOOLS_PATH\r
92 if not defined WORKSPACE (\r
93 if defined BASE_TOOLS_PATH (\r
94 set EDK_TOOLS_PATH=%BASE_TOOLS_PATH%\r
95 goto set_PATH\r
96 ) else (\r
97 echo.\r
98 echo !!! ERROR !!! Neither BASE_TOOLS_PATH nor EDK_TOOLS_PATH are set. !!!\r
99 echo.\r
100 goto end\r
101 )\r
102 ) else (\r
103 if exist %WORKSPACE%\BaseTools\Bin (\r
104 set EDK_TOOLS_PATH=%WORKSPACE%\BaseTools\r
105 goto set_PATH\r
106 ) else (\r
107 echo.\r
108 echo !!! ERROR !!! No tools path available. Please set EDK_TOOLS_PATH !!!\r
109 echo.\r
110 goto end\r
111 )\r
112 )\r
113\r
114:set_PATH\r
115 if defined WORKSPACE_TOOLS_PATH goto check_PATH\r
116 if not defined EDK_TOOLS_BIN (\r
117 if exist %EDK_TOOLS_PATH%\Bin\Win32 (\r
118 set EDK_TOOLS_BIN=%EDK_TOOLS_PATH%\Bin\Win32\r
119 ) else (\r
120 echo.\r
121 echo !!! ERROR !!! Cannot find BaseTools Bin Win32!!!\r
122 echo Please check the directory %EDK_TOOLS_PATH%\Bin\Win32\r
123 echo Or configure EDK_TOOLS_BIN env to point Win32 directory.\r
124 echo. \r
125 goto end\r
126 )\r
127 )\r
128 set PATH=%EDK_TOOLS_BIN%;%PATH%\r
129 set WORKSPACE_TOOLS_PATH=%EDK_TOOLS_PATH%\r
130 goto PATH_ok\r
131\r
132:check_PATH\r
133 if "%EDK_TOOLS_PATH%"=="%WORKSPACE_TOOLS_PATH%" goto PATH_ok\r
134 if not defined EDK_TOOLS_BIN (\r
135 if exist %EDK_TOOLS_PATH%\Bin\Win32 (\r
136 set EDK_TOOLS_BIN=%EDK_TOOLS_PATH%\Bin\Win32\r
137 ) else (\r
138 echo.\r
139 echo !!! ERROR !!! Cannot find BaseTools Bin Win32!!!\r
140 echo Please check the directory %EDK_TOOLS_PATH%\Bin\Win32\r
141 echo Or configure EDK_TOOLS_BIN env to point Win32 directory.\r
142 echo. \r
143 goto end\r
144 )\r
145 )\r
146 set PATH=%EDK_TOOLS_BIN%;%PATH%\r
147 set WORKSPACE_TOOLS_PATH=%EDK_TOOLS_PATH%\r
148 echo Resetting the PATH variable to include the EDK_TOOLS_PATH for this session.\r
149\r
150:PATH_ok\r
151REM\r
152REM copy *.template to %CONF_PATH%\r
153REM\r
154if not defined WORKSPACE (\r
155 if defined RECONFIG (\r
156 echo.\r
157 echo !!! WARNING !!! WORKSPACE environment variable was not set, cannot Reconfig !!!\r
158 echo.\r
159 )\r
160 goto skip_reconfig\r
161)\r
162\r
163set CONF_PATH=%WORKSPACE%\Conf\r
164if NOT exist %CONF_PATH% (\r
165 if defined PACKAGES_PATH (\r
166 for %%i IN (%PACKAGES_PATH%) DO (\r
167 if exist %%~fi\Conf (\r
168 set CONF_PATH=%%i\Conf\r
169 goto CopyConf\r
170 )\r
171 )\r
172 )\r
173)\r
174 \r
175:CopyConf\r
176if NOT exist %CONF_PATH% (\r
177 mkdir %CONF_PATH%\r
178) else (\r
179 if defined RECONFIG (\r
180 echo.\r
181 echo Over-writing the files in the CONF_PATH directory\r
182 echo using the default template files\r
183 echo.\r
184 )\r
185)\r
186\r
187if NOT exist %CONF_PATH%\target.txt (\r
188 echo copying ... target.template to %CONF_PATH%\target.txt\r
189 if NOT exist %EDK_TOOLS_PATH%\Conf\target.template (\r
190 echo Error: target.template is missing at folder %EDK_TOOLS_PATH%\Conf\\r
191 )\r
192 copy %EDK_TOOLS_PATH%\Conf\target.template %CONF_PATH%\target.txt > nul\r
193) else (\r
194 if defined RECONFIG echo over-write ... target.template to %CONF_PATH%\target.txt\r
195 if defined RECONFIG copy /Y %EDK_TOOLS_PATH%\Conf\target.template %CONF_PATH%\target.txt > nul\r
196)\r
197\r
198if NOT exist %CONF_PATH%\tools_def.txt (\r
199 echo copying ... tools_def.template to %CONF_PATH%\tools_def.txt\r
200 if NOT exist %EDK_TOOLS_PATH%\Conf\tools_def.template (\r
201 echo Error: tools_def.template is missing at folder %EDK_TOOLS_PATH%\Conf\\r
202 )\r
203 copy %EDK_TOOLS_PATH%\Conf\tools_def.template %CONF_PATH%\tools_def.txt > nul\r
204) else (\r
205 if defined RECONFIG echo over-write ... tools_def.template to %CONF_PATH%\tools_def.txt\r
206 if defined RECONFIG copy /Y %EDK_TOOLS_PATH%\Conf\tools_def.template %CONF_PATH%\tools_def.txt > nul\r
207)\r
208\r
209if NOT exist %CONF_PATH%\build_rule.txt (\r
210 echo copying ... build_rule.template to %CONF_PATH%\build_rule.txt\r
211 if NOT exist %EDK_TOOLS_PATH%\Conf\build_rule.template (\r
212 echo Error: build_rule.template is missing at folder %EDK_TOOLS_PATH%\Conf\\r
213 )\r
214 copy %EDK_TOOLS_PATH%\Conf\build_rule.template %CONF_PATH%\build_rule.txt > nul\r
215) else (\r
216 if defined RECONFIG echo over-write ... build_rule.template to %CONF_PATH%\build_rule.txt\r
217 if defined RECONFIG copy /Y %EDK_TOOLS_PATH%\Conf\build_rule.template %CONF_PATH%\build_rule.txt > nul\r
218)\r
219\r
220echo PATH = %PATH%\r
221echo.\r
222if defined WORKSPACE (\r
223 echo WORKSPACE = %WORKSPACE%\r
224)\r
225if defined PACKAGES_PATH (\r
226 echo PACKAGES_PATH = %PACKAGES_PATH%\r
227)\r
228echo EDK_TOOLS_PATH = %EDK_TOOLS_PATH%\r
229if defined BASE_TOOLS_PATH (\r
230 echo BASE_TOOLS_PATH = %BASE_TOOLS_PATH%\r
231)\r
232if defined EDK_TOOLS_BIN (\r
233 echo EDK_TOOLS_BIN = %EDK_TOOLS_BIN%\r
234)\r
235echo CONF_PATH = %CONF_PATH%\r
236echo.\r
237\r
238:skip_reconfig\r
239\r
240@REM\r
241@REM Test if we are going to have to do a build\r
242@REM\r
243if defined FORCE_REBUILD goto check_build_environment\r
244if defined REBUILD goto check_build_environment\r
245if not exist "%EDK_TOOLS_PATH%" goto check_build_environment\r
246\r
247IF NOT EXIST "%EDK_TOOLS_BIN%\BootSectImage.exe" goto check_build_environment\r
248IF NOT EXIST "%EDK_TOOLS_BIN%\build.exe" goto check_build_environment\r
249IF NOT EXIST "%EDK_TOOLS_BIN%\EfiLdrImage.exe" goto check_build_environment\r
250IF NOT EXIST "%EDK_TOOLS_BIN%\EfiRom.exe" goto check_build_environment\r
251IF NOT EXIST "%EDK_TOOLS_BIN%\GenBootSector.exe" goto check_build_environment\r
252IF NOT EXIST "%EDK_TOOLS_BIN%\GenFds.exe" goto check_build_environment\r
253IF NOT EXIST "%EDK_TOOLS_BIN%\GenFfs.exe" goto check_build_environment\r
254IF NOT EXIST "%EDK_TOOLS_BIN%\GenFv.exe" goto check_build_environment\r
255IF NOT EXIST "%EDK_TOOLS_BIN%\GenFw.exe" goto check_build_environment\r
256IF NOT EXIST "%EDK_TOOLS_BIN%\GenPage.exe" goto check_build_environment\r
257IF NOT EXIST "%EDK_TOOLS_BIN%\GenSec.exe" goto check_build_environment\r
258IF NOT EXIST "%EDK_TOOLS_BIN%\GenVtf.exe" goto check_build_environment\r
259IF NOT EXIST "%EDK_TOOLS_BIN%\Split.exe" goto check_build_environment\r
260IF NOT EXIST "%EDK_TOOLS_BIN%\TargetTool.exe" goto check_build_environment\r
261IF NOT EXIST "%EDK_TOOLS_BIN%\TianoCompress.exe" goto check_build_environment\r
262IF NOT EXIST "%EDK_TOOLS_BIN%\Trim.exe" goto check_build_environment\r
263IF NOT EXIST "%EDK_TOOLS_BIN%\VfrCompile.exe" goto check_build_environment\r
264IF NOT EXIST "%EDK_TOOLS_BIN%\VolInfo.exe" goto check_build_environment\r
265\r
266goto end\r
267\r
268:check_build_environment\r
269\r
270 if not defined FORCE_REBUILD (\r
271 echo.\r
272 echo Rebuilding of tools is not required. Binaries of the latest,\r
273 echo tested versions of the tools have been tested and included in the\r
274 echo EDK II repository.\r
275 echo.\r
276 echo If you really want to build the tools, use the ForceRebuild option.\r
277 echo.\r
278 goto end\r
279 )\r
280\r
281 if not defined BASE_TOOLS_PATH (\r
282 if not exist "Source\C\Makefile" (\r
283 if not exist "%EDK_TOOLS_PATH%\Source\C\Makefile" goto no_source_files\r
284 set BASE_TOOLS_PATH=%EDK_TOOLS_PATH%\r
285 ) else (\r
286 set BASE_TOOLS_PATH=%CD%\r
287 )\r
288 )\r
289 set PATH=%BASE_TOOLS_PATH%\Bin\Win32;%PATH%\r
290\r
291 set BASETOOLS_PYTHON_SOURCE=%BASE_TOOLS_PATH%\Source\Python\r
292 set PYTHONPATH=%BASETOOLS_PYTHON_SOURCE%;%PYTHONPATH%\r
293\r
294 if not defined PYTHON_HOME (\r
295 if defined PYTHONHOME (\r
296 set PYTHON_HOME=%PYTHONHOME%\r
297 ) else (\r
298 echo.\r
299 echo !!! ERROR !!! PYTHON_HOME is required to build or execute the tools, please set it. !!!\r
300 echo.\r
301 goto end\r
302 )\r
303 )\r
304\r
305 @REM We have Python, now test for FreezePython application\r
306 if not defined PYTHON_FREEZER_PATH (\r
307 @REM see if we can find FreezePython.ex\r
308 if exist "%PYTHON_HOME%\Tools\cx_Freeze-3.0.3\FreezePython.exe" (\r
309 set PYTHON_FREEZER_PATH=%PYTHON_HOME%\Tools\cx_Freeze-3.0.3\r
310 ) \r
311 if exist "%PYTHON_HOME%\Tools\cx_Freeze\FreezePython.exe" (\r
312 set PYTHON_FREEZER_PATH=%PYTHON_HOME%\Tools\cx_Freeze\r
313 ) \r
314 if exist "C:\cx_Freeze\FreezePython.exe" (\r
315 set PYTHON_FREEZER_PATH=C:\cx_Freeze\r
316 )\r
317 if exist "C:\cx_Freeze-3.0.3" (\r
318 set PYTHON_FREEZER_PATH=C:\cx_Freeze-3.0.3\r
319 )\r
320 if not defined PYTHON_FREEZER_PATH (\r
321 echo.\r
322 echo !!! WARNING !!! Will not be able to compile Python programs to .exe\r
323 echo Will setup environment to run Python scripts directly.\r
324 echo.\r
325 set "PATH=%BASETOOLS_PYTHON_SOURCE%\Trim;%PATH%"\r
326 set "PATH=%BASETOOLS_PYTHON_SOURCE%\GenFds;%PATH%"\r
327 set "PATH=%BASETOOLS_PYTHON_SOURCE%\build;%PATH%"\r
328 set PATHEXT=%PATHEXT%;.py\r
329 )\r
330 )\r
331 \r
332 echo BASE_TOOLS_PATH = %BASE_TOOLS_PATH%\r
333 echo PYTHON_PATH = %PYTHON_PATH%\r
334 echo PYTHON_FREEZER_PATH = %PYTHON_FREEZER_PATH%\r
335 echo.\r
336\r
337 call "%EDK_TOOLS_PATH%\get_vsvars.bat"\r
338 if not defined VCINSTALLDIR (\r
339 @echo.\r
340 @echo !!! ERROR !!!! Cannot find Visual Studio, required to build C tools !!!\r
341 @echo.\r
342 goto end\r
343 )\r
344\r
345:VisualStudioAvailable\r
346 if not defined FORCE_REBUILD goto IncrementalBuild\r
347\r
348:CleanAndBuild\r
349 pushd .\r
350 cd %BASE_TOOLS_PATH%\r
351 call nmake cleanall\r
352 del /f /q %BASE_TOOLS_PATH%\Bin\Win32\*.*\r
353 popd\r
354 @REM Let CleanAndBuild fall through to IncrementalBuild\r
355\r
356\r
357:IncrementalBuild\r
358 pushd .\r
359 cd %BASE_TOOLS_PATH%\r
360 call nmake c\r
361 popd\r
362\r
363 if defined PYTHON_FREEZER_PATH (\r
364 echo BUILDING PYTHON TOOLS\r
365 pushd .\r
366 cd %BASE_TOOLS_PATH%\r
367 call nmake python\r
368 popd\r
369 ) else (\r
370 echo.\r
371 echo !!! WARNING !!! Cannot make executable from Python code, executing python scripts instead !!!\r
372 echo.\r
373 )\r
374 goto end\r
375\r
376\r
377:no_source_files\r
378 echo.\r
379 echo !!! ERROR !!! Cannot build BaseTools applications - no source directory located !!!\r
380 echo.\r
381 goto end\r
382\r
383:Usage\r
384 @echo.\r
385 echo Usage: "%0 [-h | -help | --help | /h | /help | /?] [ Rebuild | ForceRebuild ] [Reconfig] [base_tools_path [edk_tools_path]]"\r
386 @echo.\r
387 @echo base_tools_path BaseTools project path, BASE_TOOLS_PATH will be set to this path. \r
388 @echo edk_tools_path EDK_TOOLS_PATH will be set to this path.\r
389 @echo Rebuild If sources are available perform an Incremental build, only \r
390 @echo build those updated tools.\r
391 @echo ForceRebuild If sources are available, rebuild all tools regardless of \r
392 @echo whether they have been updated or not.\r
393 @echo Reconfig Reinstall target.txt, tools_def.txt and build_rule.txt.\r
394 @echo.\r
395\r
396:end\r
397set REBUILD=\r
398set FORCE_REBUILD=\r
399set RECONFIG=\r
400popd\r
401\r