]> git.proxmox.com Git - mirror_edk2.git/blob - edksetup.bat
Start to build the manifest.
[mirror_edk2.git] / edksetup.bat
1 @REM
2 @REM Copyright (c) 2006, Intel Corporation
3 @REM All rights reserved. This program and the accompanying materials
4 @REM are licensed and made available under the terms and conditions of the BSD License
5 @REM which accompanies this distribution. The full text of the license may be found at
6 @REM http://opensource.org/licenses/bsd-license.php
7 @REM
8 @REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
9 @REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
10 @REM
11
12 @REM set following environment in this file or in command shell
13 @REM set JAVA_HOME=C:\Java\jdk1.5.0_06
14 @REM set ANT_HOME=C:\ANT
15 @REM set XMLBEANS_HOME=C:\xmlbeans
16 @REM set CYGWIN_HOME=C:\cygwin
17
18 @REM usage: edksetup.bat [Rebuild] [ForceRebuild] [Reconfig]
19 @REM if the argument, skip is present, only the paths and the
20 @REM test and set of environment settings are performed.
21
22 @REM ##############################################################
23 @REM # You should not have to modify anything below this line
24 @REM #
25
26 @echo off
27
28 @REM
29 @REM Check the required system environment variables
30 @REM
31
32 :check_vc
33 if defined VCINSTALLDIR goto check_cygwin
34 if defined VS71COMNTOOLS (
35 call "%VS71COMNTOOLS%\vsvars32.bat"
36 ) else (
37 echo.
38 echo !!! WARNING !!!! Cannot find Visual Studio !!!
39 echo.
40 )
41
42 :check_cygwin
43 if defined CYGWIN_HOME goto check_java
44 if exist c:\cygwin (
45 set CYGWIN_HOME=c:\cygwin
46 ) else (
47 echo.
48 echo !!! WARNING !!!! Not set CYGWIN_HOME, gcc build may not be used !!!
49 echo.
50 )
51
52 :check_java
53 if "%JAVA_HOME%"=="" goto no_jdk
54
55 :check_ant
56 if "%ANT_HOME%"=="" goto no_ant
57 if not exist %ANT_HOME%\lib\ant-contrib.jar goto no_antcontrib
58
59 :check_xmlbeans
60 if "%XMLBEANS_HOME%"=="" goto no_xmlbeans
61 if not exist %XMLBEANS_HOME%\lib\saxon8.jar goto no_saxon8
62
63 @REM
64 @REM Set the WORKSPACE to the current working directory
65 @REM
66 set WORKSPACE=%CD%
67
68 set FRAMEWORK_TOOLS_PATH=%WORKSPACE%\Tools\bin
69
70 if not defined ORIGINAL_CLASSPATH set ORIGINAL_CLASSPATH=%CLASSPATH%
71 set CLASSPATH=%ORIGINAL_CLASSPATH%
72
73 if defined WORKSPACE_TOOLS_PATH goto check_path
74 set PATH=%FRAMEWORK_TOOLS_PATH%;%JAVA_HOME%\bin;%ANT_HOME%\bin;%XMLBEANS_HOME%\bin;%PATH%
75 set WORKSPACE_TOOLS_PATH=%FRAMEWORK_TOOLS_PATH%
76 echo Setting the PATH variable to include the FRAMEWORK_TOOLS_PATH for this WORKSPACE
77 goto path_ok
78
79 :check_path
80 if "%FRAMEWORK_TOOLS_PATH%"=="%WORKSPACE_TOOLS_PATH%" goto path_ok
81 set PATH=%FRAMEWORK_TOOLS_PATH%;%PATH%
82 set WORKSPACE_TOOLS_PATH=%WORKSPACE%\Tools\bin
83 echo Resetting the PATH variable to include the FRAMEWORK_TOOLS_PATH for this WORKSPACE
84
85 :path_ok
86
87 @if /I "%1"=="-h" goto Usage
88 @if /I "%1"=="-help" goto Usage
89 @if /I "%1"=="--help" goto Usage
90 @if /I "%1"=="/h" goto Usage
91 @if /I "%1"=="/?" goto Usage
92 @if /I "%1"=="/help" goto Usage
93 @if /I "%1"=="ForceRebuild" goto ForceBuild
94 @if /I "%1"=="Reconfig" goto Reconfig
95
96 @IF NOT EXIST "Tools\Jars\Common.jar" goto NormalBuild
97 @IF NOT EXIST "Tools\Jars\PcdTools.jar" goto NormalBuild
98 @IF NOT EXIST "Tools\Jars\GenBuild.jar" goto NormalBuild
99 @IF NOT EXIST "Tools\Jars\SurfaceArea.jar" goto NormalBuild
100 @IF NOT EXIST "Tools\Jars\cpptasks.jar" goto NormalBuild
101 @IF NOT EXIST "Tools\Jars\frameworktasks.jar" goto NormalBuild
102 @IF NOT EXIST "Tools\bin\FrameworkWizard.jar" goto NormalBuild
103 @IF NOT EXIST "Tools\bin\CompressDll.dll" goto NormalBuild
104 @IF NOT EXIST "Tools\bin\CompressDll.lib" goto NormalBuild
105 @IF NOT EXIST "Tools\bin\CreateMtFile.exe" goto NormalBuild
106 @IF NOT EXIST "Tools\bin\EfiCompress.exe" goto NormalBuild
107 @IF NOT EXIST "Tools\bin\EfiRom.exe" goto NormalBuild
108 @IF NOT EXIST "Tools\bin\FlashMap.exe" goto NormalBuild
109 @IF NOT EXIST "Tools\bin\FwImage.exe" goto NormalBuild
110 @IF NOT EXIST "Tools\bin\GenAcpiTable.exe" goto NormalBuild
111 @IF NOT EXIST "Tools\bin\GenCRC32Section.exe" goto NormalBuild
112 @IF NOT EXIST "Tools\bin\GenCapsuleHdr.exe" goto NormalBuild
113 @IF NOT EXIST "Tools\bin\GenDepex.exe" goto NormalBuild
114 @IF NOT EXIST "Tools\bin\GenFfsFile.exe" goto NormalBuild
115 @IF NOT EXIST "Tools\bin\GenFvImage.exe" goto NormalBuild
116 @IF NOT EXIST "Tools\bin\GenSection.exe" goto NormalBuild
117 @IF NOT EXIST "Tools\bin\GenTEImage.exe" goto NormalBuild
118 @IF NOT EXIST "Tools\bin\GuidChk.exe" goto NormalBuild
119 @IF NOT EXIST "Tools\bin\MakeDeps.exe" goto NormalBuild
120 @IF NOT EXIST "Tools\bin\ModifyInf.exe" goto NormalBuild
121 @IF NOT EXIST "Tools\bin\PeiRebase_Ia32.exe" goto NormalBuild
122 @IF NOT EXIST "Tools\bin\PeiRebase_Ipf.exe" goto NormalBuild
123 @IF NOT EXIST "Tools\bin\PeiRebase_X64.exe" goto NormalBuild
124 @IF NOT EXIST "Tools\bin\SecApResetVectorFixup.exe" goto NormalBuild
125 @IF NOT EXIST "Tools\bin\SecFixup.exe" goto NormalBuild
126 @IF NOT EXIST "Tools\bin\SetStamp.exe" goto NormalBuild
127 @IF NOT EXIST "Tools\bin\SplitFile.exe" goto NormalBuild
128 @IF NOT EXIST "Tools\bin\StrGather.exe" goto NormalBuild
129 @IF NOT EXIST "Tools\bin\Strip.exe" goto NormalBuild
130 @IF NOT EXIST "Tools\bin\VfrCompile.exe" goto NormalBuild
131 @IF NOT EXIST "Tools\bin\ZeroDebugData.exe" goto NormalBuild
132 @IF NOT EXIST "Tools\bin\antlr.exe" goto NormalBuild
133 @IF NOT EXIST "Tools\bin\dlg.exe" goto NormalBuild
134
135 @if /I "%1"=="Rebuild" goto NormalBuild
136 @if NOT "%1"=="" goto Usage
137
138 goto skipbuild
139
140 :ForceBuild
141 call ant -f %WORKSPACE%\Tools\build.xml -noclasspath cleanall
142
143 :NormalBuild
144 @REM
145 @REM Start to build the Framework Tools
146 @REM
147
148 echo.
149 echo Building the Framework Tools
150 echo.
151
152 @REM
153 @REM We are going to create the SurfaceArea.jar file first so that the other
154 @REM Java Programs can use it.
155 @REM It needs the XMLBEANS libraries in order to compile.
156 @REM
157 set CLASSPATH=%XMLBEANS_HOME%\lib;%CLASSPATH%
158 set CLASSPATH=%XMLBEANS_HOME%\lib\jsr173_1.0_api.jar;%CLASSPATH%
159 set CLASSPATH=%XMLBEANS_HOME%\lib\xbean.jar;%CLASSPATH%
160 set CLASSPATH=%XMLBEANS_HOME%\lib\xbean_xpath.jar;%CLASSPATH%
161 set CLASSPATH=%XMLBEANS_HOME%\lib\xmlpublic.jar;%CLASSPATH%
162 set CLASSPATH=%XMLBEANS_HOME%\lib\saxon8.jar;%CLASSPATH%
163 set CLASSPATH=%XMLBEANS_HOME%\lib\resolver.jar;%CLASSPATH%
164
165 call ant -f %WORKSPACE%\Tools\build.xml SurfaceArea
166
167 @REM
168 @REM Now we can make the other Java Programs
169 @REM All of the remaining Java Programs require the SurfaceArea library to compile
170 @REM
171 set CLASSPATH=%WORKSPACE%\Tools\Jars\SurfaceArea.jar;%CLASSPATH%
172
173 call ant -f %WORKSPACE%\Tools\build.xml JavaCode
174
175 @REM
176 @REM We have all of the Java Programs and add-in classes created, so we can start
177 @REM using the cpp-tasks to create our tools
178 @REM
179 set CLASSPATH=%WORKSPACE%\Tools\Jars\Common.jar;%CLASSPATH%
180 set CLASSPATH=%WORKSPACE%\Tools\Jars\PcdTools.jar;%CLASSPATH%
181 set CLASSPATH=%WORKSPACE%\Tools\Jars\GenBuild.jar;%CLASSPATH%
182 set CLASSPATH=%WORKSPACE%\Tools\Jars\cpptasks.jar;%CLASSPATH%
183 set CLASSPATH=%WORKSPACE%\Tools\Jars\frameworktasks.jar;%CLASSPATH%
184 set CLASSPATH=%WORKSPACE%\Tools\Bin\FrameworkWizard.jar;%CLASSPATH%
185 set CLASSPATH=%WORKSPACE%\Tools\Bin\MigrationTools.jar;%CLASSPATH%
186
187 call ant -f %WORKSPACE%\Tools\build.xml C_Code
188
189 @REM
190 @REM Done!!!
191 @REM
192 goto end
193
194 :no_jdk
195 echo.
196 echo !!! Please install Java, and set JAVA_HOME !!!
197 echo.
198 goto end
199
200 :no_ant
201 echo.
202 echo !!! Please install Apache Ant, and set ANT_HOME !!!
203 echo.
204 goto end
205
206 :no_antcontrib
207 echo.
208 echo !!! Please install Ant-contrib to ANT_HOME !!!
209 echo.
210 goto end
211
212 :no_xmlbeans
213 echo.
214 echo !!! Please install XML Beans, and set XMLBEANS_HOME !!!
215 echo.
216 goto end
217
218 :no_saxon8
219 echo.
220 echo !!! Please copy saxon8.jar file to XMLBEANS_HOME\lib !!!
221 echo.
222 goto end
223
224 :skipbuild
225 @REM
226 @REM This just sets up the CLASSPATH, the rest of the environment should have been set already.
227 @REM
228 echo.
229 echo WORKSPACE: %WORKSPACE%
230 echo JAVA_HOME: %JAVA_HOME%
231 echo ANT_HOME: %ANT_HOME%
232 echo XMLBEANS_HOME: %XMLBEANS_HOME%
233 echo CYGWIN_HOME: %CYGWIN_HOME%
234 echo PATH: %PATH%
235 echo.
236 set CLASSPATH=%XMLBEANS_HOME%\lib;%CLASSPATH%
237 set CLASSPATH=%XMLBEANS_HOME%\lib\jsr173_1.0_api.jar;%CLASSPATH%
238 set CLASSPATH=%XMLBEANS_HOME%\lib\xbean.jar;%CLASSPATH%
239 set CLASSPATH=%XMLBEANS_HOME%\lib\xbean_xpath.jar;%CLASSPATH%
240 set CLASSPATH=%XMLBEANS_HOME%\lib\xmlpublic.jar;%CLASSPATH%
241 set CLASSPATH=%XMLBEANS_HOME%\lib\saxon8.jar;%CLASSPATH%
242 set CLASSPATH=%XMLBEANS_HOME%\lib\resolver.jar;%CLASSPATH%
243 set CLASSPATH=%WORKSPACE%\Tools\Jars\SurfaceArea.jar;%CLASSPATH%
244 set CLASSPATH=%WORKSPACE%\Tools\Jars\Common.jar;%CLASSPATH%
245 set CLASSPATH=%WORKSPACE%\Tools\Jars\PcdTools.jar;%CLASSPATH%
246 set CLASSPATH=%WORKSPACE%\Tools\Jars\GenBuild.jar;%CLASSPATH%
247 set CLASSPATH=%WORKSPACE%\Tools\Jars\cpptasks.jar;%CLASSPATH%
248 set CLASSPATH=%WORKSPACE%\Tools\Jars\frameworktasks.jar;%CLASSPATH%
249 set CLASSPATH=%WORKSPACE%\Tools\Bin\FrameworkWizard.jar;%CLASSPATH%
250 set CLASSPATH=%WORKSPACE%\Tools\Bin\MigrationTools.jar;%CLASSPATH%
251 echo CLASSPATH: %CLASSPATH%
252 goto end
253
254 :Reconfig
255 @REM
256 @REM Reinstall all config files
257 @REM
258 call ant -f %WORKSPACE%\Tools\build.xml reconfig
259 goto end
260
261 :Usage
262 echo.
263 echo Usage: %0 [Rebuild] [ForceRebuild] [Reconfig]
264 echo Rebuild: Incremental build, only build those updated tools;
265 echo ForceRebuild: Rebuild all tools neither updated or not;
266 echo Reconfig: Reinstall target.txt, tools_def.txt, FrameworkDatabase.db.
267 echo.
268 echo Note that target.template, tools_def.template, FrameworkDatabase.template will be
269 echo only copied to target.txt, tools_def.txt, FrameworkDatabase.db respectively if they
270 echo are not existed. Using option [Reconfig] to do the force copy.
271 echo.
272
273 :end
274 @echo on
275