3 # Copyright (c) 2008 - 2011, Apple Inc. All rights reserved.<BR>
4 # Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
6 # This program and the accompanying materials
7 # are licensed and made available under the terms and conditions of the BSD License
8 # which accompanies this distribution. The full text of the license may be found at
9 # http://opensource.org/licenses/bsd-license.php
11 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
20 # Setup workspace if it is not set
22 if [ -z "$WORKSPACE" ]
24 echo Initializing workspace
25 if [ ! -e `pwd`/edksetup.sh
]
29 # This version is for the tools in the BaseTools project.
30 # this assumes svn pulls have the same root dir
31 # export EDK_TOOLS_PATH=`pwd`/../BaseTools
32 # This version is for the tools source in edk2
33 export EDK_TOOLS_PATH
=`pwd`/BaseTools
35 source edksetup.sh BaseTools
37 echo Building from
: $WORKSPACE
41 # Configure defaults for various options
58 CYGWIN
*) echo Cygwin not fully supported yet.
;;
60 Major
=$
(uname
-r | cut
-f 1 -d '.')
63 echo UnixPkg requires Snow Leopard or later OS
69 BUILD_NEW_SHELL
="-D BUILD_NEW_SHELL"
70 BUILD_FAT
="-D BUILD_FAT"
85 gcc_version
=$
(gcc
-v 2>&1 |
tail -1 |
awk '{print $3}')
104 # Scan command line to override defaults
109 if [ -z "$LAST_ARG" ]; then
125 BUILD_OPTIONS
="$BUILD_OPTIONS $arg"
143 BUILD_OPTIONS
="$BUILD_OPTIONS $arg"
150 if [ -z "$HOST_TOOLS" ]
152 HOST_TOOLS
=$TARGET_TOOLS
155 if [ -z "$PROCESSOR" ]
157 PROCESSOR
=$HOST_PROCESSOR
163 BUILD_OUTPUT_DIR
=$WORKSPACE/Build
/Emulator32
164 LIB_NAMES
="ld-linux.so.2 libdl.so.2 crt1.o crti.o crtn.o"
165 LIB_SEARCH_PATHS
="/usr/lib/i386-linux-gnu /usr/lib32 /lib32 /usr/lib /lib"
169 BUILD_OUTPUT_DIR
=$WORKSPACE/Build
/Emulator
170 LIB_NAMES
="ld-linux-x86-64.so.2 libdl.so.2 crt1.o crti.o crtn.o"
171 LIB_SEARCH_PATHS
="/usr/lib/x86_64-linux-gnu /usr/lib64 /lib64 /usr/lib /lib"
175 for libname
in $LIB_NAMES
177 for dirname in $LIB_SEARCH_PATHS
179 if [ -e $dirname/$libname ]; then
180 export HOST_DLINK_PATHS
="$HOST_DLINK_PATHS $dirname/$libname"
186 PLATFORMFILE
=$WORKSPACE/EmulatorPkg
/EmulatorPkg.dsc
187 BUILD_ROOT_ARCH
=$BUILD_OUTPUT_DIR/DEBUG_
"$TARGET_TOOLS"/$PROCESSOR
189 if [[ ! -f `which build` ||
! -f `which GenFv` ]];
191 # build the tools if they don't yet exist. Bin scheme
192 echo Building tools as they are not
in the path
193 make -C $WORKSPACE/BaseTools
194 elif [[ ( -f `which build` ||
-f `which GenFv` ) && ! -d $EDK_TOOLS_PATH/Source
/C
/bin
]];
196 # build the tools if they don't yet exist. BinWrapper scheme
197 echo Building tools no
$EDK_TOOLS_PATH/Source
/C
/bin directory
198 make -C $WORKSPACE/BaseTools
200 echo using prebuilt tools
204 if [[ "$RUN_EMULATOR" == "yes" ]]; then
208 # On Darwin we can't use dlopen, so we have to load the real PE/COFF images.
209 # This .gdbinit script sets a breakpoint that loads symbols for the PE/COFFEE
210 # images that get loaded in Host
212 cp $WORKSPACE/EmulatorPkg
/Unix
/.gdbinit
$BUILD_OUTPUT_DIR/DEBUG_
"$TARGET_TOOLS"/$PROCESSOR
216 /usr
/bin
/gdb
$BUILD_ROOT_ARCH/Host
-q -cd=$BUILD_ROOT_ARCH -x $WORKSPACE/EmulatorPkg
/Unix
/GdbRun
222 build
-p $WORKSPACE/EmulatorPkg
/EmulatorPkg.dsc
-a $PROCESSOR -b $BUILDTARGET -t $HOST_TOOLS -D UNIX_SEC_BUILD
-n 3 clean
223 build
-p $WORKSPACE/EmulatorPkg
/EmulatorPkg.dsc
-a $PROCESSOR -b $BUILDTARGET -t $TARGET_TOOLS -n 3 clean
227 make -C $WORKSPACE/BaseTools clean
228 build
-p $WORKSPACE/EmulatorPkg
/EmulatorPkg.dsc
-a $PROCESSOR -b $BUILDTARGET -t $HOST_TOOLS -D UNIX_SEC_BUILD
-n 3 clean
229 build
-p $WORKSPACE/EmulatorPkg
/EmulatorPkg.dsc
-a $PROCESSOR -b $BUILDTARGET -t $TARGET_TOOLS -n 3 clean
230 build
-p $WORKSPACE/ShellPkg
/ShellPkg.dsc
-a IA32
-b $BUILDTARGET -t $TARGET_TOOLS -n 3 clean
237 # Build the edk2 EmulatorPkg
239 if [[ $HOST_TOOLS == $TARGET_TOOLS ]]; then
240 build
-p $WORKSPACE/EmulatorPkg
/EmulatorPkg.dsc
$BUILD_OPTIONS -a $PROCESSOR -b $BUILDTARGET -t $TARGET_TOOLS -D BUILD_
$ARCH_SIZE -D UNIX_SEC_BUILD
$NETWORK_SUPPORT $BUILD_NEW_SHELL $BUILD_FAT -n 3
242 build
-p $WORKSPACE/EmulatorPkg
/EmulatorPkg.dsc
$BUILD_OPTIONS -a $PROCESSOR -b $BUILDTARGET -t $HOST_TOOLS -D BUILD_
$ARCH_SIZE -D UNIX_SEC_BUILD
-D SKIP_MAIN_BUILD
-n 3 modules
243 build
-p $WORKSPACE/EmulatorPkg
/EmulatorPkg.dsc
$BUILD_OPTIONS -a $PROCESSOR -b $BUILDTARGET -t $TARGET_TOOLS -D BUILD_
$ARCH_SIZE $NETWORK_SUPPORT $BUILD_NEW_SHELL $BUILD_FAT -n 3
244 cp $BUILD_OUTPUT_DIR/DEBUG_
"$HOST_TOOLS"/$PROCESSOR/Host
$BUILD_ROOT_ARCH