3 # Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
4 # Copyright (c) 2010, 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 # Pick a default tool type for a given OS
46 CYGWIN
*) echo Cygwin not fully supported yet.
;;
48 Major
=$
(uname
-r | cut
-f 1 -d '.')
51 echo UnixPkg requires Snow Leopard or later OS
56 NETWORK_SUPPORT
="-D NETWORK_SUPPORT"
58 Linux
*) TARGET_TOOLS
=ELFGCC
;;
62 BUILD_ROOT_ARCH
=$WORKSPACE/Build
/Unix
/DEBUG_
"$TARGET_TOOLS"/IA32
64 if [[ ! -f `which build` ||
! -f `which GenFv` ]];
66 # build the tools if they don't yet exist. Bin scheme
67 echo Building tools as they are not
in the path
68 make -C $WORKSPACE/BaseTools
69 elif [[ ( -f `which build` ||
-f `which GenFv` ) && ! -d $EDK_TOOLS_PATH/Source
/C
/bin
]];
71 # build the tools if they don't yet exist. BinWrapper scheme
72 echo Building tools no
$EDK_TOOLS_PATH/Source
/C
/bin directory
73 make -C $WORKSPACE/BaseTools
75 echo using prebuilt tools
81 if [[ $arg == run
]]; then
85 # On Darwin we can't use dlopen, so we have to load the real PE/COFF images.
86 # This .gdbinit script sets a breakpoint that loads symbols for the PE/COFFEE
87 # images that get loaded in SecMain
89 cp $WORKSPACE/UnixPkg
/.gdbinit
$WORKSPACE/Build
/Unix
/DEBUG_
"$TARGET_TOOLS"/IA32
93 /usr
/bin
/gdb
$BUILD_ROOT_ARCH/SecMain
-q -cd=$BUILD_ROOT_ARCH
97 if [[ $arg == cleanall
]]; then
98 make -C $WORKSPACE/BaseTools clean
99 build
-p $WORKSPACE/GccShellPkg
/GccShellPkg.dsc
-a IA32
-t $TARGET_TOOLS -n 3 clean
103 if [[ $arg == clean
]]; then
104 build
-p $WORKSPACE/GccShellPkg
/GccShellPkg.dsc
-a IA32
-t $TARGET_TOOLS -n 3 clean
108 if [[ $arg == shell
]]; then
109 build
-p $WORKSPACE/GccShellPkg
/GccShellPkg.dsc
-a IA32
-t $TARGET_TOOLS -n 3 $2 $3 $4 $5 $6 $7 $8
116 # Build the edk2 UnixPkg
120 build
-p $WORKSPACE/UnixPkg
/UnixPkg.dsc
-a IA32
-t $TARGET_TOOLS $NETWORK_SUPPORT -n 3 $1 $2 $3 $4 $5 $6 $7 $8