]> git.proxmox.com Git - mirror_edk2.git/blob - EmulatorPkg/build.sh
2daaaadcd4217b05a21dbc60ff734107e016e3ab
[mirror_edk2.git] / EmulatorPkg / build.sh
1 #!/bin/bash
2 #
3 # Copyright (c) 2008 - 2011, Apple Inc. All rights reserved.<BR>
4 # Copyright (c) 2010 - 2015, Intel Corporation. All rights reserved.<BR>
5 #
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
10 #
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.
13 #
14
15 set -e
16 shopt -s nocasematch
17
18
19 #
20 # Setup workspace if it is not set
21 #
22 if [ -z "$WORKSPACE" ]
23 then
24 echo Initializing workspace
25 if [ ! -e `pwd`/edksetup.sh ]
26 then
27 cd ..
28 fi
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
34 echo $EDK_TOOLS_PATH
35 source edksetup.sh BaseTools
36 else
37 echo Building from: $WORKSPACE
38 fi
39
40 #
41 # Configure defaults for various options
42 #
43
44 PROCESSOR=
45 BUILDTARGET=DEBUG
46 BUILD_OPTIONS=
47 PLATFORMFILE=
48 LAST_ARG=
49 RUN_EMULATOR=no
50 CLEAN_TYPE=none
51 TARGET_TOOLS=GCC48
52 NETWORK_SUPPORT=
53 BUILD_NEW_SHELL=
54 BUILD_FAT=
55 HOST_PROCESSOR=X64
56
57 case `uname` in
58 CYGWIN*) echo Cygwin not fully supported yet. ;;
59 Darwin*)
60 Major=$(uname -r | cut -f 1 -d '.')
61 if [[ $Major == 9 ]]
62 then
63 echo UnixPkg requires Snow Leopard or later OS
64 exit 1
65 else
66 CLANG_VER=$(clang -ccc-host-triple x86_64-pc-win32-macho 2>&1 >/dev/null) || true
67 if [[ "$CLANG_VER" == *-ccc-host-triple* ]]
68 then
69 # only older versions of Xcode support -ccc-host-tripe, for newer versions
70 # it is -target
71 HOST_TOOLS=XCODE32
72 TARGET_TOOLS=XCODE5
73 else
74 HOST_TOOLS=XCODE32
75 TARGET_TOOLS=XCLANG
76 fi
77 fi
78 BUILD_NEW_SHELL="-D BUILD_NEW_SHELL"
79 BUILD_FAT="-D BUILD_FAT"
80 ;;
81 Linux*)
82 case `uname -m` in
83 i386)
84 HOST_PROCESSOR=IA32
85 ;;
86 i686)
87 HOST_PROCESSOR=IA32
88 ;;
89 x86_64)
90 HOST_PROCESSOR=X64
91 ;;
92 esac
93
94 gcc_version=$(gcc -v 2>&1 | tail -1 | awk '{print $3}')
95 case $gcc_version in
96 [1-3].*|4.[0-7].*)
97 echo EmulatorPkg requires GCC4.8 or later
98 exit 1
99 ;;
100 4.8.*)
101 TARGET_TOOLS=GCC48
102 ;;
103 4.9.*|6.[0-2].*)
104 TARGET_TOOLS=GCC49
105 ;;
106 *)
107 TARGET_TOOLS=GCC5
108 ;;
109 esac
110 ;;
111 esac
112
113 #
114 # Scan command line to override defaults
115 #
116
117 for arg in "$@"
118 do
119 if [ -z "$LAST_ARG" ]; then
120 case $arg in
121 -a|-b|-t|-p)
122 LAST_ARG=$arg
123 ;;
124 run)
125 RUN_EMULATOR=yes
126 shift
127 break
128 ;;
129 clean|cleanall)
130 CLEAN_TYPE=$arg
131 shift
132 break
133 ;;
134 *)
135 BUILD_OPTIONS="$BUILD_OPTIONS $arg"
136 ;;
137 esac
138 else
139 case $LAST_ARG in
140 -a)
141 PROCESSOR=$arg
142 ;;
143 -b)
144 BUILDTARGET=$arg
145 ;;
146 -p)
147 PLATFORMFILE=$arg
148 ;;
149 -t)
150 HOST_TOOLS=$arg
151 ;;
152 *)
153 BUILD_OPTIONS="$BUILD_OPTIONS $arg"
154 ;;
155 esac
156 LAST_ARG=
157 fi
158 shift
159 done
160 if [ -z "$HOST_TOOLS" ]
161 then
162 HOST_TOOLS=$TARGET_TOOLS
163 fi
164
165 if [ -z "$PROCESSOR" ]
166 then
167 PROCESSOR=$HOST_PROCESSOR
168 fi
169
170 BUILD_OUTPUT_DIR=$WORKSPACE/Build/Emulator$PROCESSOR
171
172 case $PROCESSOR in
173 IA32)
174 ARCH_SIZE=32
175 LIB_NAMES="ld-linux.so.2 libdl.so.2 crt1.o crti.o crtn.o"
176 LIB_SEARCH_PATHS="/usr/lib/i386-linux-gnu /usr/lib32 /lib32 /usr/lib /lib"
177 ;;
178 X64)
179 ARCH_SIZE=64
180 LIB_NAMES="ld-linux-x86-64.so.2 libdl.so.2 crt1.o crti.o crtn.o"
181 LIB_SEARCH_PATHS="/usr/lib/x86_64-linux-gnu /usr/lib64 /lib64 /usr/lib /lib"
182 ;;
183 esac
184
185 for libname in $LIB_NAMES
186 do
187 for dirname in $LIB_SEARCH_PATHS
188 do
189 if [ -e $dirname/$libname ]; then
190 export HOST_DLINK_PATHS="$HOST_DLINK_PATHS $dirname/$libname"
191 break
192 fi
193 done
194 done
195
196 PLATFORMFILE=$WORKSPACE/EmulatorPkg/EmulatorPkg.dsc
197 BUILD_DIR=$BUILD_OUTPUT_DIR/DEBUG_"$TARGET_TOOLS"
198 BUILD_ROOT_ARCH=$BUILD_DIR/$PROCESSOR
199
200 if [[ ! -f `which build` || ! -f `which GenFv` ]];
201 then
202 # build the tools if they don't yet exist. Bin scheme
203 echo Building tools as they are not in the path
204 make -C $WORKSPACE/BaseTools
205 elif [[ ( -f `which build` || -f `which GenFv` ) && ! -d $EDK_TOOLS_PATH/Source/C/bin ]];
206 then
207 # build the tools if they don't yet exist. BinWrapper scheme
208 echo Building tools no $EDK_TOOLS_PATH/Source/C/bin directory
209 make -C $WORKSPACE/BaseTools
210 else
211 echo using prebuilt tools
212 fi
213
214
215 if [[ "$RUN_EMULATOR" == "yes" ]]; then
216 case `uname` in
217 Darwin*)
218 #
219 # On Darwin we can't use dlopen, so we have to load the real PE/COFF images.
220 # This .gdbinit script sets a breakpoint that loads symbols for the PE/COFFEE
221 # images that get loaded in Host
222 #
223 if [[ "$CLANG_VER" == *-ccc-host-triple* ]]
224 then
225 # only older versions of Xcode support -ccc-host-tripe, for newer versions
226 # it is -target
227 cp $WORKSPACE/EmulatorPkg/Unix/lldbefi.py $BUILD_OUTPUT_DIR/DEBUG_"$TARGET_TOOLS"/$PROCESSOR
228 cd $BUILD_ROOT_ARCH; /usr/bin/lldb --source $WORKSPACE/EmulatorPkg/Unix/lldbinit Host
229 exit $?
230 else
231 cp $WORKSPACE/EmulatorPkg/Unix/.gdbinit $BUILD_OUTPUT_DIR/DEBUG_"$TARGET_TOOLS"/$PROCESSOR
232 fi
233 ;;
234 esac
235
236 /usr/bin/gdb $BUILD_ROOT_ARCH/Host -q -cd=$BUILD_ROOT_ARCH -x $WORKSPACE/EmulatorPkg/Unix/GdbRun
237 exit
238 fi
239
240 case $CLEAN_TYPE in
241 clean)
242 build -p $WORKSPACE/EmulatorPkg/EmulatorPkg.dsc -a $PROCESSOR -b $BUILDTARGET -t $HOST_TOOLS -D UNIX_SEC_BUILD -n 3 clean
243 build -p $WORKSPACE/EmulatorPkg/EmulatorPkg.dsc -a $PROCESSOR -b $BUILDTARGET -t $TARGET_TOOLS -n 3 clean
244 exit $?
245 ;;
246 cleanall)
247 make -C $WORKSPACE/BaseTools clean
248 build -p $WORKSPACE/EmulatorPkg/EmulatorPkg.dsc -a $PROCESSOR -b $BUILDTARGET -t $HOST_TOOLS -D UNIX_SEC_BUILD -n 3 clean
249 build -p $WORKSPACE/EmulatorPkg/EmulatorPkg.dsc -a $PROCESSOR -b $BUILDTARGET -t $TARGET_TOOLS -n 3 clean
250 build -p $WORKSPACE/ShellPkg/ShellPkg.dsc -a IA32 -b $BUILDTARGET -t $TARGET_TOOLS -n 3 clean
251 exit $?
252 ;;
253 esac
254
255
256 #
257 # Build the edk2 EmulatorPkg
258 #
259 if [[ $HOST_TOOLS == $TARGET_TOOLS ]]; then
260 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
261 else
262 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
263 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
264 cp $BUILD_OUTPUT_DIR/DEBUG_"$HOST_TOOLS"/$PROCESSOR/Host $BUILD_ROOT_ARCH
265 fi
266 exit $?
267