lhauch | 8014e7c | 2008-02-22 16:31:23 +0000 | [diff] [blame] | 1 | @REM @file
|
| 2 | @REM Windows batch file to setup a WORKSPACE environment
|
bbahnsen | 878ddf1 | 2006-04-21 22:54:32 +0000 | [diff] [blame] | 3 | @REM
|
lhauch | b176333 | 2014-10-30 17:09:25 +0000 | [diff] [blame^] | 4 | @REM Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
|
hhtian | 24542fb | 2010-04-29 15:17:20 +0000 | [diff] [blame] | 5 | @REM This program and the accompanying materials
|
bbahnsen | 878ddf1 | 2006-04-21 22:54:32 +0000 | [diff] [blame] | 6 | @REM are licensed and made available under the terms and conditions of the BSD License
|
| 7 | @REM which accompanies this distribution. The full text of the license may be found at
|
| 8 | @REM http://opensource.org/licenses/bsd-license.php
|
yshi8 | a29212b | 2006-05-09 06:11:05 +0000 | [diff] [blame] | 9 | @REM
|
bbahnsen | 878ddf1 | 2006-04-21 22:54:32 +0000 | [diff] [blame] | 10 | @REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
| 11 | @REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
| 12 | @REM
|
| 13 |
|
yshi8 | a29212b | 2006-05-09 06:11:05 +0000 | [diff] [blame] | 14 | @REM set CYGWIN_HOME=C:\cygwin
|
bbahnsen | 878ddf1 | 2006-04-21 22:54:32 +0000 | [diff] [blame] | 15 |
|
lhauch | 8014e7c | 2008-02-22 16:31:23 +0000 | [diff] [blame] | 16 | @REM usage:
|
| 17 | @REM edksetup.bat [--nt32] [AntBuild] [Rebuild] [ForceRebuild] [Reconfig]
|
lhauch | 302e0e4 | 2006-06-09 15:26:28 +0000 | [diff] [blame] | 18 | @REM if the argument, skip is present, only the paths and the
|
| 19 | @REM test and set of environment settings are performed.
|
bbahnsen | 878ddf1 | 2006-04-21 22:54:32 +0000 | [diff] [blame] | 20 |
|
| 21 | @REM ##############################################################
|
| 22 | @REM # You should not have to modify anything below this line
|
| 23 | @REM #
|
| 24 |
|
| 25 | @echo off
|
| 26 |
|
yshi8 | a29212b | 2006-05-09 06:11:05 +0000 | [diff] [blame] | 27 | @REM
|
jwang36 | 3fab94e | 2007-06-22 06:25:37 +0000 | [diff] [blame] | 28 | @REM Set the WORKSPACE to the current working directory
|
| 29 | @REM
|
jwang36 | b750908 | 2007-10-11 08:58:33 +0000 | [diff] [blame] | 30 | pushd .
|
| 31 | cd %~dp0
|
jwang36 | 3fab94e | 2007-06-22 06:25:37 +0000 | [diff] [blame] | 32 |
|
lgao4 | dff2673 | 2010-01-26 04:58:56 +0000 | [diff] [blame] | 33 | if not defined WORKSPACE (
|
Olivier Martin | 7ef23d9 | 2014-02-24 14:09:00 +0000 | [diff] [blame] | 34 | goto SetWorkSpace
|
lgao4 | d27bd9e | 2010-01-26 02:42:37 +0000 | [diff] [blame] | 35 | )
|
| 36 |
|
lgao4 | dff2673 | 2010-01-26 04:58:56 +0000 | [diff] [blame] | 37 | if %WORKSPACE% == %CD% (
|
| 38 | @REM Workspace is not changed.
|
Olivier Martin | 7ef23d9 | 2014-02-24 14:09:00 +0000 | [diff] [blame] | 39 | goto ParseArgs
|
lgao4 | dff2673 | 2010-01-26 04:58:56 +0000 | [diff] [blame] | 40 | )
|
| 41 |
|
| 42 | :SetWorkSpace
|
lgao4 | d27bd9e | 2010-01-26 02:42:37 +0000 | [diff] [blame] | 43 | @REM set new workspace
|
| 44 | @REM clear EFI_SOURCE and EDK_SOURCE for the new workspace
|
| 45 | set WORKSPACE=%CD%
|
| 46 | set EFI_SOURCE=
|
| 47 | set EDK_SOURCE=
|
| 48 |
|
| 49 | :ParseArgs
|
Olivier Martin | 7ef23d9 | 2014-02-24 14:09:00 +0000 | [diff] [blame] | 50 | if /I "%1"=="-h" goto Usage
|
| 51 | if /I "%1"=="-help" goto Usage
|
| 52 | if /I "%1"=="--help" goto Usage
|
| 53 | if /I "%1"=="/h" goto Usage
|
| 54 | if /I "%1"=="/?" goto Usage
|
| 55 | if /I "%1"=="/help" goto Usage
|
lhauch | 8014e7c | 2008-02-22 16:31:23 +0000 | [diff] [blame] | 56 |
|
Olivier Martin | 7ef23d9 | 2014-02-24 14:09:00 +0000 | [diff] [blame] | 57 | if /I not "%1"=="--nt32" goto no_nt32
|
lhauch | 8014e7c | 2008-02-22 16:31:23 +0000 | [diff] [blame] | 58 |
|
| 59 | @REM Flag, --nt32 is set
|
| 60 | @REM The Nt32 Emluation Platform requires Microsoft Libraries
|
| 61 | @REM and headers to interface with Windows.
|
| 62 |
|
jwang36 | 402bbc7 | 2007-10-31 09:12:54 +0000 | [diff] [blame] | 63 | if not defined VCINSTALLDIR (
|
lhauch | b176333 | 2014-10-30 17:09:25 +0000 | [diff] [blame^] | 64 | if defined VS120COMNTOOLS (
|
| 65 | call "%VS120COMNTOOLS%\vsvars32.bat"
|
jwang36 | 402bbc7 | 2007-10-31 09:12:54 +0000 | [diff] [blame] | 66 | ) else (
|
lhauch | b176333 | 2014-10-30 17:09:25 +0000 | [diff] [blame^] | 67 | if defined VS110COMNTOOLS (
|
| 68 | call "%VS110COMNTOOLS%\vsvars32.bat"
|
jwang36 | 402bbc7 | 2007-10-31 09:12:54 +0000 | [diff] [blame] | 69 | ) else (
|
lhauch | b176333 | 2014-10-30 17:09:25 +0000 | [diff] [blame^] | 70 | if defined VS100COMNTOOLS (
|
| 71 | call "%VS100COMNTOOLS%\vsvars32.bat"
|
ywang | c16243d | 2009-11-16 23:02:57 +0000 | [diff] [blame] | 72 | ) else (
|
lhauch | b176333 | 2014-10-30 17:09:25 +0000 | [diff] [blame^] | 73 | if defined VS90COMNTOOLS (
|
| 74 | call "%VS90COMNTOOLS%\vsvars32.bat"
|
lgao4 | 48604ef | 2012-04-10 07:45:35 +0000 | [diff] [blame] | 75 | ) else (
|
lhauch | b176333 | 2014-10-30 17:09:25 +0000 | [diff] [blame^] | 76 | if defined VS80COMNTOOLS (
|
| 77 | call "%VS80COMNTOOLS%\vsvars32.bat"
|
Liming Gao | 4c633da | 2013-09-04 07:41:04 +0000 | [diff] [blame] | 78 | ) else (
|
lhauch | b176333 | 2014-10-30 17:09:25 +0000 | [diff] [blame^] | 79 | if defined VS71COMNTOOLS (
|
| 80 | call "%VS71COMNTOOLS%\vsvars32.bat"
|
| 81 | ) else (
|
| 82 | echo.
|
| 83 | echo !!! WARNING !!! Cannot find Visual Studio !!!
|
| 84 | echo.
|
| 85 | )
|
Liming Gao | 4c633da | 2013-09-04 07:41:04 +0000 | [diff] [blame] | 86 | )
|
lgao4 | 48604ef | 2012-04-10 07:45:35 +0000 | [diff] [blame] | 87 | )
|
ywang | c16243d | 2009-11-16 23:02:57 +0000 | [diff] [blame] | 88 | )
|
jwang36 | 402bbc7 | 2007-10-31 09:12:54 +0000 | [diff] [blame] | 89 | )
|
| 90 | )
|
| 91 | )
|
jwang36 | b750908 | 2007-10-11 08:58:33 +0000 | [diff] [blame] | 92 | shift
|
jwang36 | b750908 | 2007-10-11 08:58:33 +0000 | [diff] [blame] | 93 |
|
lhauch | 3a6b455 | 2008-12-31 16:57:24 +0000 | [diff] [blame] | 94 | :no_nt32
|
Olivier Martin | 7ef23d9 | 2014-02-24 14:09:00 +0000 | [diff] [blame] | 95 | if /I "%1"=="NewBuild" shift
|
Victor Gouveia | c5ed01d | 2014-06-18 09:01:33 +0000 | [diff] [blame] | 96 | set EDK_TOOLS_PATH=%WORKSPACE%\BaseTools
|
Olivier Martin | 7ef23d9 | 2014-02-24 14:09:00 +0000 | [diff] [blame] | 97 | IF NOT EXIST "%EDK_TOOLS_PATH%\toolsetup.bat" goto BadBaseTools
|
| 98 | call %EDK_TOOLS_PATH%\toolsetup.bat %*
|
| 99 | if /I "%1"=="Reconfig" shift
|
| 100 | goto check_cygwin
|
lhauch | 8014e7c | 2008-02-22 16:31:23 +0000 | [diff] [blame] | 101 |
|
| 102 | :BadBaseTools
|
| 103 | @REM
|
Olivier Martin | 7ef23d9 | 2014-02-24 14:09:00 +0000 | [diff] [blame] | 104 | REM Need the BaseTools Package in order to build
|
lhauch | 8014e7c | 2008-02-22 16:31:23 +0000 | [diff] [blame] | 105 | @REM
|
Olivier Martin | 7ef23d9 | 2014-02-24 14:09:00 +0000 | [diff] [blame] | 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
|
lhauch | 8014e7c | 2008-02-22 16:31:23 +0000 | [diff] [blame] | 115 |
|
yshi8 | a29212b | 2006-05-09 06:11:05 +0000 | [diff] [blame] | 116 | :check_cygwin
|
Olivier Martin | 1f9c860 | 2014-02-24 14:14:13 +0000 | [diff] [blame] | 117 | if defined CYGWIN_HOME (
|
| 118 | if not exist "%CYGWIN_HOME%" (
|
| 119 | @echo.
|
| 120 | @echo !!! WARNING !!! CYGWIN_HOME not found, gcc build may not be used !!!
|
| 121 | @echo.
|
| 122 | )
|
| 123 | ) else (
|
Olivier Martin | 7ef23d9 | 2014-02-24 14:09:00 +0000 | [diff] [blame] | 124 | if exist c:\cygwin (
|
| 125 | set CYGWIN_HOME=c:\cygwin
|
lhauch | 8014e7c | 2008-02-22 16:31:23 +0000 | [diff] [blame] | 126 | ) else (
|
lhauch | 3a6b455 | 2008-12-31 16:57:24 +0000 | [diff] [blame] | 127 | @echo.
|
| 128 | @echo !!! WARNING !!! No CYGWIN_HOME set, gcc build may not be used !!!
|
| 129 | @echo.
|
lhauch | 8014e7c | 2008-02-22 16:31:23 +0000 | [diff] [blame] | 130 | )
|
Olivier Martin | 1f9c860 | 2014-02-24 14:14:13 +0000 | [diff] [blame] | 131 | )
|
bbahnsen | 878ddf1 | 2006-04-21 22:54:32 +0000 | [diff] [blame] | 132 |
|
Olivier Martin | 1f9c860 | 2014-02-24 14:14:13 +0000 | [diff] [blame] | 133 | :cygwin_done
|
| 134 | if "%1"=="" goto end
|
wuyizhong | 2fcfed3 | 2006-10-17 07:07:24 +0000 | [diff] [blame] | 135 |
|
lhauch | 70edbc3 | 2006-07-14 06:46:15 +0000 | [diff] [blame] | 136 | :Usage
|
lhauch | 3a6b455 | 2008-12-31 16:57:24 +0000 | [diff] [blame] | 137 | @echo.
|
| 138 | @echo Usage: "%0 [-h | -help | --help | /h | /help | /?] [--nt32] [Reconfig]"
|
| 139 | @echo --nt32 Call vsvars32.bat for NT32 platform build.
|
| 140 | @echo.
|
| 141 | @echo Reconfig Reinstall target.txt, tools_def.txt and build_rule.txt.
|
| 142 | @echo.
|
| 143 | @echo Note that target.template, tools_def.template and build_rules.template
|
Olivier Martin | 1f9c860 | 2014-02-24 14:14:13 +0000 | [diff] [blame] | 144 | @echo will only be copied to target.txt, tools_def.txt and build_rule.txt
|
| 145 | @echo respectively if they do not exist. Use option [Reconfig] to force the copy.
|
lhauch | 3a6b455 | 2008-12-31 16:57:24 +0000 | [diff] [blame] | 146 | @echo.
|
Olivier Martin | 7ef23d9 | 2014-02-24 14:09:00 +0000 | [diff] [blame] | 147 | goto end
|
jwang36 | 3fab94e | 2007-06-22 06:25:37 +0000 | [diff] [blame] | 148 |
|
bbahnsen | 878ddf1 | 2006-04-21 22:54:32 +0000 | [diff] [blame] | 149 | :end
|
Olivier Martin | 7ef23d9 | 2014-02-24 14:09:00 +0000 | [diff] [blame] | 150 | popd
|
bbahnsen | 878ddf1 | 2006-04-21 22:54:32 +0000 | [diff] [blame] | 151 |
|