]>
Commit | Line | Data |
---|---|---|
8014e7ce | 1 | @REM @file\r |
2 | @REM Windows batch file to setup a WORKSPACE environment\r | |
878ddf1f | 3 | @REM\r |
cc7c6a37 | 4 | @REM Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>\r |
92063b0b | 5 | @REM (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>\r |
24542fb2 | 6 | @REM This program and the accompanying materials\r |
878ddf1f | 7 | @REM are licensed and made available under the terms and conditions of the BSD License\r |
8 | @REM which accompanies this distribution. The full text of the license may be found at\r | |
9 | @REM http://opensource.org/licenses/bsd-license.php\r | |
a29212b2 | 10 | @REM\r |
878ddf1f | 11 | @REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r |
12 | @REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
13 | @REM\r | |
14 | \r | |
a29212b2 | 15 | @REM set CYGWIN_HOME=C:\cygwin\r |
878ddf1f | 16 | \r |
1e6add9e | 17 | @REM usage:\r |
8014e7ce | 18 | @REM edksetup.bat [--nt32] [AntBuild] [Rebuild] [ForceRebuild] [Reconfig]\r |
302e0e4a | 19 | @REM if the argument, skip is present, only the paths and the\r |
1e6add9e | 20 | @REM test and set of environment settings are performed.\r |
878ddf1f | 21 | \r |
22 | @REM ##############################################################\r | |
23 | @REM # You should not have to modify anything below this line\r | |
24 | @REM #\r | |
25 | \r | |
26 | @echo off\r | |
27 | \r | |
3fab94ed | 28 | @REM\r |
29 | @REM Set the WORKSPACE to the current working directory\r | |
30 | @REM\r | |
b7509087 | 31 | pushd .\r |
32 | cd %~dp0\r | |
d27bd9e9 | 33 | \r |
dff2673e | 34 | if not defined WORKSPACE (\r |
7ef23d9c | 35 | goto SetWorkSpace\r |
d27bd9e9 LG |
36 | )\r |
37 | \r | |
dff2673e LG |
38 | if %WORKSPACE% == %CD% (\r |
39 | @REM Workspace is not changed.\r | |
7ef23d9c | 40 | goto ParseArgs\r |
dff2673e LG |
41 | )\r |
42 | \r | |
43 | :SetWorkSpace\r | |
d27bd9e9 | 44 | @REM set new workspace\r |
dcc80786 LG |
45 | if not defined WORKSPACE (\r |
46 | set WORKSPACE=%CD%\r | |
dcc80786 | 47 | )\r |
3fab94ed | 48 | \r |
d27bd9e9 | 49 | :ParseArgs\r |
7ef23d9c OM |
50 | if /I "%1"=="-h" goto Usage\r |
51 | if /I "%1"=="-help" goto Usage\r | |
52 | if /I "%1"=="--help" goto Usage\r | |
53 | if /I "%1"=="/h" goto Usage\r | |
54 | if /I "%1"=="/?" goto Usage\r | |
55 | if /I "%1"=="/help" goto Usage\r | |
8014e7ce | 56 | \r |
7ef23d9c | 57 | if /I "%1"=="NewBuild" shift\r |
cc7c6a37 | 58 | if not defined EDK_TOOLS_PATH (\r |
40d1adb3 YF |
59 | goto SetEdkToolsPath\r |
60 | ) else (\r | |
61 | goto checkNt32Flag\r | |
62 | )\r | |
63 | \r | |
64 | :SetEdkToolsPath\r | |
65 | if %WORKSPACE:~-1% EQU \ (\r | |
66 | @set EDK_BASETOOLS=%WORKSPACE%BaseTools\r | |
67 | ) else (\r | |
68 | @set EDK_BASETOOLS=%WORKSPACE%\BaseTools\r | |
69 | )\r | |
70 | if exist %EDK_BASETOOLS% (\r | |
71 | set EDK_TOOLS_PATH=%EDK_BASETOOLS%\r | |
72 | set EDK_BASETOOLS=\r | |
73 | ) else (\r | |
74 | if defined PACKAGES_PATH (\r | |
75 | for %%i IN (%PACKAGES_PATH%) DO (\r | |
76 | if exist %%~fi\BaseTools (\r | |
77 | set EDK_TOOLS_PATH=%%~fi\BaseTools\r | |
78 | goto checkNt32Flag\r | |
dcc80786 LG |
79 | )\r |
80 | )\r | |
40d1adb3 YF |
81 | ) else (\r |
82 | echo.\r | |
83 | echo !!! ERROR !!! Cannot find BaseTools !!!\r | |
84 | echo.\r | |
85 | goto BadBaseTools\r | |
dcc80786 LG |
86 | )\r |
87 | )\r | |
dcc80786 | 88 | \r |
92063b0b | 89 | :checkNt32Flag\r |
4e908975 LG |
90 | if exist %EDK_TOOLS_PATH%\Source set BASE_TOOLS_PATH=%EDK_TOOLS_PATH%\r |
91 | \r | |
92063b0b CS |
92 | @REM The Nt32 Emluation Platform requires Microsoft Libraries\r |
93 | @REM and headers to interface with Windows.\r | |
94 | if /I "%1"=="--nt32" (\r | |
95 | if /I "%2"=="X64" (\r | |
96 | shift\r | |
97 | call "%BASE_TOOLS_PATH%\Scripts\SetVisualStudio.bat"\r | |
98 | ) else (\r | |
99 | call "%BASE_TOOLS_PATH%\get_vsvars.bat"\r | |
100 | )\r | |
101 | shift\r | |
102 | )\r | |
103 | \r | |
dcc80786 | 104 | :checkBaseTools\r |
7ef23d9c OM |
105 | IF NOT EXIST "%EDK_TOOLS_PATH%\toolsetup.bat" goto BadBaseTools\r |
106 | call %EDK_TOOLS_PATH%\toolsetup.bat %*\r | |
107 | if /I "%1"=="Reconfig" shift\r | |
910e2062 | 108 | goto check_NASM\r |
7ef23d9c | 109 | goto check_cygwin\r |
8014e7ce | 110 | \r |
111 | :BadBaseTools\r | |
112 | @REM\r | |
7ef23d9c | 113 | REM Need the BaseTools Package in order to build\r |
8014e7ce | 114 | @REM\r |
7ef23d9c OM |
115 | @echo.\r |
116 | @echo !!! ERROR !!! The BaseTools Package was not found !!!\r | |
117 | @echo.\r | |
118 | @echo Set the system environment variable, EDK_TOOLS_PATH to the BaseTools,\r | |
119 | @echo For example,\r | |
120 | @echo set EDK_TOOLS_PATH=C:\MyTools\BaseTools\r | |
121 | @echo The setup script, toolsetup.bat must reside in this folder.\r | |
122 | @echo.\r | |
123 | goto end\r | |
8014e7ce | 124 | \r |
910e2062 YZ |
125 | :check_NASM\r |
126 | if not defined NASM_PREFIX (\r | |
127 | @echo.\r | |
128 | @echo !!! WARNING !!! NASM_PREFIX environment variable is not set\r | |
129 | @if exist "C:\nasm\nasm.exe" @set "NASM_PREFIX=C:\nasm\"\r | |
130 | @if exist "C:\nasm\nasm.exe" @echo Found nasm.exe, setting the environment variable to C:\nasm\\r | |
131 | @if not exist "C:\nasm\nasm.exe" echo Attempting to build modules that require NASM will fail.\r | |
132 | )\r | |
133 | \r | |
a29212b2 | 134 | :check_cygwin\r |
1f9c8606 OM |
135 | if defined CYGWIN_HOME (\r |
136 | if not exist "%CYGWIN_HOME%" (\r | |
137 | @echo.\r | |
138 | @echo !!! WARNING !!! CYGWIN_HOME not found, gcc build may not be used !!!\r | |
139 | @echo.\r | |
140 | )\r | |
141 | ) else (\r | |
7ef23d9c OM |
142 | if exist c:\cygwin (\r |
143 | set CYGWIN_HOME=c:\cygwin\r | |
8014e7ce | 144 | ) else (\r |
3a6b4559 | 145 | @echo.\r |
146 | @echo !!! WARNING !!! No CYGWIN_HOME set, gcc build may not be used !!!\r | |
147 | @echo.\r | |
8014e7ce | 148 | )\r |
1f9c8606 | 149 | )\r |
878ddf1f | 150 | \r |
1f9c8606 | 151 | :cygwin_done\r |
1e6add9e CR |
152 | if /I "%1"=="Rebuild" shift\r |
153 | if /I "%1"=="ForceRebuild" shift\r | |
1f9c8606 | 154 | if "%1"=="" goto end\r |
2fcfed38 | 155 | \r |
70edbc34 | 156 | :Usage\r |
3a6b4559 | 157 | @echo.\r |
1e6add9e | 158 | @echo Usage: "%0 [-h | -help | --help | /h | /help | /?] [--nt32 [X64]] [Reconfig] [Rebuild] [ForceRebuild]"\r |
92063b0b CS |
159 | @echo --nt32 [X64] If a compiler tool chain is not available in the\r |
160 | @echo environment, call a script to attempt to set one up.\r | |
161 | @echo This flag is only required if building the\r | |
162 | @echo Nt32Pkg/Nt32Pkg.dsc system emulator.\r | |
163 | @echo If the X64 argument is set, and a compiler tool chain is\r | |
164 | @echo not available, attempt to set up a tool chain that will\r | |
165 | @echo create X64 binaries. Setting these two options have the\r | |
166 | @echo potential side effect of changing tool chains used for a\r | |
167 | @echo rebuild.\r | |
3a6b4559 | 168 | @echo.\r |
169 | @echo Reconfig Reinstall target.txt, tools_def.txt and build_rule.txt.\r | |
1e6add9e CR |
170 | @echo Rebuild Perform incremental rebuild of BaseTools binaries.\r |
171 | @echo ForceRebuild Force a full rebuild of BaseTools binaries.\r | |
3a6b4559 | 172 | @echo.\r |
173 | @echo Note that target.template, tools_def.template and build_rules.template\r | |
1f9c8606 OM |
174 | @echo will only be copied to target.txt, tools_def.txt and build_rule.txt\r |
175 | @echo respectively if they do not exist. Use option [Reconfig] to force the copy.\r | |
3a6b4559 | 176 | @echo.\r |
7ef23d9c | 177 | goto end\r |
3fab94ed | 178 | \r |
878ddf1f | 179 | :end\r |
7ef23d9c | 180 | popd\r |