]> git.proxmox.com Git - mirror_edk2.git/blob - edksetup.bat
Temporary workaround--determine the target architecture from an environment variable...
[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_04
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 [skip]
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 if "%1"=="skip" goto skipbuild
33
34 :check_vc
35 if defined VCINSTALLDIR goto check_cygwin
36 if defined VS71COMNTOOLS (
37 call "%VS71COMNTOOLS%vsvars32.bat"
38 ) else (
39 echo.
40 echo !!! WARNING !!!! Cannot find Visual Studio !!!
41 echo.
42 )
43
44 :check_cygwin
45 if defined CYGWIN_HOME goto check_java
46 if exist c:\cygwin (
47 set CYGWIN_HOME=c:\cygwin
48 ) else (
49 echo.
50 echo !!! WARNING !!!! Not set CYGWIN_HOME, gcc build may not be used !!!
51 echo.
52 )
53
54 :check_java
55 if "%JAVA_HOME%"=="" goto no_jdk
56
57 :check_ant
58 if "%ANT_HOME%"=="" goto no_ant
59 if not exist %ANT_HOME%\lib\ant-contrib.jar goto no_antcontrib
60
61 :check_xmlbeans
62 if "%XMLBEANS_HOME%"=="" goto no_xmlbeans
63 if not exist %XMLBEANS_HOME%\lib\saxon8.jar goto no_saxon8
64
65 @REM
66 @REM Set the WORKSPACE to the current working directory
67 @REM
68 set WORKSPACE=%CD%
69
70 set FRAMEWORK_TOOLS_PATH=%WORKSPACE%\Tools\bin
71 set PATH=%JAVA_HOME%\bin;%ANT_HOME%\bin;%XMLBEANS_HOME%\bin;%Framework_Tools_Path%;%PATH%
72
73 echo.
74 echo JAVA_HOME: %JAVA_HOME%
75 echo ANT_HOME: %ANT_HOME%
76 echo XMLBEANS_HOME: %XMLBEANS_HOME%
77 echo CYGWIN_HOME: %CYGWIN_HOME%
78 echo WORKSPACE: %WORKSPACE%
79 echo PATH: %PATH%
80 echo.
81
82 @REM
83 @REM Start to build the Framework Tools
84 @REM
85
86
87 echo.
88 echo Building the Framework Tools
89 echo.
90
91 @REM
92 @REM We are going to create the SurfaceArea.jar file first so that the other
93 @REM Java Programs can use it.
94 @REM It needs the XMLBEANS libraries in order to compile.
95 @REM
96 set CLASSPATH=%XMLBEANS_HOME%\lib\jsr173_1.0_api.jar;%XMLBEANS_HOME%\lib\xbean.jar
97 set CLASSPATH=%CLASSPATH%;%XMLBEANS_HOME%\lib\xbean_xpath.jar;%XMLBEANS_HOME%\lib\xmlpublic.jar
98 set CLASSPATH=%CLASSPATH%;%XMLBEANS_HOME%\lib\saxon8.jar;%XMLBEANS_HOME%\lib\resolver.jar
99
100 call ant -f %WORKSPACE%\Tools\build.xml SurfaceArea
101
102 @REM
103 @REM Now we can make the other Java Programs
104 @REM All of the remaining Java Programs require the SurfaceArea library to compile
105 @REM
106 set CLASSPATH=%CLASSPATH%;%WORKSPACE%\%Tools\Jars\SurfaceArea.jar
107
108 call ant -f %WORKSPACE%\Tools\build.xml JavaCode
109
110 @REM
111 @REM We have all of the Java Programs and add-in classes created, so we can start
112 @REM using the cpp-tasks to create our tools
113 @REM
114 set CLASSPATH=%CLASSPATH%;%WORKSPACE%\Tools\Jars\GenBuild.jar
115 set CLASSPATH=%CLASSPATH%;%WORKSPACE%\Tools\Jars\cpptasks.jar;%WORKSPACE%\Tools\Jars\frameworktasks.jar
116
117 call ant -f %WORKSPACE%\Tools\build.xml C_Code
118
119 @REM
120 @REM Done!!!
121 @REM
122 goto end
123
124 :no_jdk
125 echo.
126 echo !!! Please install Java, and set JAVA_HOME !!!
127 echo.
128 goto end
129
130 :no_ant
131 echo.
132 echo !!! Please install Apache Ant, and set ANT_HOME !!!
133 echo.
134 goto end
135
136 :no_antcontrib
137 echo.
138 echo !!! Please install Ant-contrib to ANT_HOME !!!
139 echo.
140 goto end
141
142 :no_xmlbeans
143 echo.
144 echo !!! Please install XML Beans, and set XMLBEANS_HOME !!!
145 echo.
146 goto end
147
148 :no_saxon8
149 echo.
150 echo !!! Please copy saxon8.jar file to XMLBEANS_HOME\lib !!!
151 echo.
152 goto end
153
154 :skipbuild
155 @REM
156 @REM This just sets up the CLASSPATH, the rest of the environment should have been set already.
157 @REM
158 set WORKSPACE=%CD%
159 set FRAMEWORK_TOOLS_PATH=%WORKSPACE%\Tools\bin
160 if exist c:\cygwin set CYGWIN_HOME=c:\cygwin
161 echo.
162 echo JAVA_HOME: %JAVA_HOME%
163 echo ANT_HOME: %ANT_HOME%
164 echo XMLBEANS_HOME: %XMLBEANS_HOME%
165 echo CYGWIN_HOME: %CYGWIN_HOME%
166 echo WORKSPACE: %WORKSPACE%
167 echo PATH: %PATH%
168 echo.
169 set CLASSPATH=%XMLBEANS_HOME%\lib\jsr173_1.0_api.jar;%XMLBEANS_HOME%\lib\xbean.jar
170 set CLASSPATH=%CLASSPATH%;%XMLBEANS_HOME%\lib\xbean_xpath.jar;%XMLBEANS_HOME%\lib\xmlpublic.jar
171 set CLASSPATH=%CLASSPATH%;%XMLBEANS_HOME%\lib\saxon8.jar;%XMLBEANS_HOME%\lib\resolver.jar
172 set CLASSPATH=%CLASSPATH%;%WORKSPACE%\Tools\Jars\SurfaceArea.jar;%WORKSPACE%\Tools\Jars\GenBuild.jar
173 set CLASSPATH=%CLASSPATH%;%WORKSPACE%\Tools\Jars\cpptasks.jar;%WORKSPACE%\Tools\Jars\frameworktasks.jar
174 goto end
175
176 :end
177 @echo on
178