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