]> git.proxmox.com Git - mirror_edk2.git/blob - edksetup.bat
edksetup.sh: rework argument parsing and update usage information
[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 if exist %WORKSPACE%\BaseTools (
63 set EDK_TOOLS_PATH=%WORKSPACE%\BaseTools
64 ) else (
65 if defined PACKAGES_PATH (
66 for %%i IN (%PACKAGES_PATH%) DO (
67 if exist %%~fi\BaseTools (
68 set EDK_TOOLS_PATH=%%~fi\BaseTools
69 goto checkNt32Flag
70 )
71 )
72 ) else (
73 echo.
74 echo !!! ERROR !!! Cannot find BaseTools !!!
75 echo.
76 goto BadBaseTools
77 )
78 )
79 )
80 if exist %EDK_TOOLS_PATH%\Source set BASE_TOOLS_PATH=%EDK_TOOLS_PATH%
81
82 :checkNt32Flag
83 @REM The Nt32 Emluation Platform requires Microsoft Libraries
84 @REM and headers to interface with Windows.
85 if /I "%1"=="--nt32" (
86 if /I "%2"=="X64" (
87 shift
88 call "%BASE_TOOLS_PATH%\Scripts\SetVisualStudio.bat"
89 ) else (
90 call "%BASE_TOOLS_PATH%\get_vsvars.bat"
91 )
92 shift
93 )
94
95 :checkBaseTools
96 IF NOT EXIST "%EDK_TOOLS_PATH%\toolsetup.bat" goto BadBaseTools
97 call %EDK_TOOLS_PATH%\toolsetup.bat %*
98 if /I "%1"=="Reconfig" shift
99 goto check_NASM
100 goto check_cygwin
101
102 :BadBaseTools
103 @REM
104 REM Need the BaseTools Package in order to build
105 @REM
106 @echo.
107 @echo !!! ERROR !!! The BaseTools Package was not found !!!
108 @echo.
109 @echo Set the system environment variable, EDK_TOOLS_PATH to the BaseTools,
110 @echo For example,
111 @echo set EDK_TOOLS_PATH=C:\MyTools\BaseTools
112 @echo The setup script, toolsetup.bat must reside in this folder.
113 @echo.
114 goto end
115
116 :check_NASM
117 if not defined NASM_PREFIX (
118 @echo.
119 @echo !!! WARNING !!! NASM_PREFIX environment variable is not set
120 @if exist "C:\nasm\nasm.exe" @set "NASM_PREFIX=C:\nasm\"
121 @if exist "C:\nasm\nasm.exe" @echo Found nasm.exe, setting the environment variable to C:\nasm\
122 @if not exist "C:\nasm\nasm.exe" echo Attempting to build modules that require NASM will fail.
123 )
124
125 :check_cygwin
126 if defined CYGWIN_HOME (
127 if not exist "%CYGWIN_HOME%" (
128 @echo.
129 @echo !!! WARNING !!! CYGWIN_HOME not found, gcc build may not be used !!!
130 @echo.
131 )
132 ) else (
133 if exist c:\cygwin (
134 set CYGWIN_HOME=c:\cygwin
135 ) else (
136 @echo.
137 @echo !!! WARNING !!! No CYGWIN_HOME set, gcc build may not be used !!!
138 @echo.
139 )
140 )
141
142 :cygwin_done
143 if "%1"=="" goto end
144
145 :Usage
146 @echo.
147 @echo Usage: "%0 [-h | -help | --help | /h | /help | /?] [--nt32 [X64]] [Reconfig]"
148 @echo --nt32 [X64] If a compiler tool chain is not available in the
149 @echo environment, call a script to attempt to set one up.
150 @echo This flag is only required if building the
151 @echo Nt32Pkg/Nt32Pkg.dsc system emulator.
152 @echo If the X64 argument is set, and a compiler tool chain is
153 @echo not available, attempt to set up a tool chain that will
154 @echo create X64 binaries. Setting these two options have the
155 @echo potential side effect of changing tool chains used for a
156 @echo rebuild.
157 @echo.
158 @echo Reconfig Reinstall target.txt, tools_def.txt and build_rule.txt.
159 @echo.
160 @echo Note that target.template, tools_def.template and build_rules.template
161 @echo will only be copied to target.txt, tools_def.txt and build_rule.txt
162 @echo respectively if they do not exist. Use option [Reconfig] to force the copy.
163 @echo.
164 goto end
165
166 :end
167 popd
168