]> git.proxmox.com Git - mirror_edk2.git/blame - OvmfPkg/build.sh
Fix VS2013 build failure.
[mirror_edk2.git] / OvmfPkg / build.sh
CommitLineData
5a9745b9 1#!/bin/bash
2#
3# Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
d0115279 4# Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
5a9745b9 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
15set -e
16shopt -s nocasematch
17
18
19#
20# Setup workspace if it is not set
21#
22if [ -z "$WORKSPACE" ]
23then
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
36else
37 echo Building from: $WORKSPACE
38fi
39
66325870 40#
41# Configure defaults for various options
42#
43
3f35b140
JJ
44ARCH_IA32=no
45ARCH_X64=no
66325870 46BUILDTARGET=DEBUG
47BUILD_OPTIONS=
04629652 48PLATFORMFILE=
57863080 49THREADNUMBER=1
66325870 50LAST_ARG=
51RUN_QEMU=no
bc9be821 52ENABLE_FLASH=no
5a9745b9 53
54#
55# Pick a default tool type for a given OS
56#
57TARGET_TOOLS=MYTOOLS
58case `uname` in
66325870 59 CYGWIN*)
60 echo Cygwin not fully supported yet.
61 ;;
5a9745b9 62 Darwin*)
429c05fa 63 Major=$(uname -r | cut -f 1 -d '.')
64 case $Major in
65 10)
66 TARGET_TOOLS=XCODE32
67 ;;
68 1[12])
69 TARGET_TOOLS=XCLANG
70 ;;
71 *)
5a9745b9 72 echo OvmfPkg requires Snow Leopard or later OS
73 exit 1
429c05fa 74 ;;
75 esac
76 ;;
5a9745b9 77 Linux*)
8567a8ca 78 gcc_version=$(gcc -v 2>&1 | tail -1 | awk '{print $3}')
79 case $gcc_version in
80 4.5.*)
81 TARGET_TOOLS=GCC45
82 ;;
83 4.6.*)
84 TARGET_TOOLS=GCC46
85 ;;
d0115279 86 4.7.*)
743094a2 87 TARGET_TOOLS=GCC47
88 ;;
595a5bc9 89 4.8.*)
d0115279
JJ
90 TARGET_TOOLS=GCC48
91 ;;
595a5bc9
JJ
92 4.9.*|4.1[0-9].*)
93 TARGET_TOOLS=GCC49
94 ;;
8567a8ca 95 *)
96 TARGET_TOOLS=GCC44
8567a8ca 97 ;;
98 esac
66325870 99esac
100
101#
102# Scan command line to override defaults
103#
5a9745b9 104
66325870 105for arg in "$@"
106do
107 if [ -z "$LAST_ARG" ]; then
108 case $arg in
57863080 109 -a|-b|-t|-p|-n)
66325870 110 LAST_ARG=$arg
111 ;;
112 qemu)
113 RUN_QEMU=yes
114 shift
115 break
116 ;;
bc9be821
JJ
117 --enable-flash)
118 ENABLE_FLASH=yes
119 ;;
66325870 120 *)
121 BUILD_OPTIONS="$BUILD_OPTIONS $arg"
122 ;;
123 esac
124 else
125 case $LAST_ARG in
126 -a)
3f35b140
JJ
127 if [[ x"$arg" != x"IA32" && x"$arg" != x"X64" ]]; then
128 echo Unsupported processor architecture: $arg
129 echo Only IA32 or X64 is supported
130 exit 1
131 fi
132 eval ARCH_$arg=yes
66325870 133 ;;
134 -b)
135 BUILDTARGET=$arg
136 ;;
04629652 137 -p)
138 PLATFORMFILE=$arg
139 ;;
66325870 140 -t)
141 TARGET_TOOLS=$arg
142 ;;
57863080 143 -n)
144 THREADNUMBER=$arg
145 ;;
66325870 146 *)
147 BUILD_OPTIONS="$BUILD_OPTIONS $arg"
148 ;;
149 esac
150 LAST_ARG=
151 fi
152 shift
153done
154
3f35b140
JJ
155if [[ "$ARCH_IA32" == "yes" && "$ARCH_X64" == "yes" ]]; then
156 PROCESSOR=IA32X64
157 Processor=Ia32X64
158 BUILD_OPTIONS="$BUILD_OPTIONS -a IA32 -a X64"
159 PLATFORM_BUILD_DIR=Ovmf3264
160 BUILD_ROOT_ARCH=X64
161elif [[ "$ARCH_IA32" == "yes" && "$ARCH_X64" == "no" ]]; then
162 PROCESSOR=IA32
163 Processor=Ia32
164 BUILD_OPTIONS="$BUILD_OPTIONS -a IA32"
165 PLATFORM_BUILD_DIR=Ovmf$Processor
166 BUILD_ROOT_ARCH=$PROCESSOR
167else
168 PROCESSOR=X64
169 Processor=X64
170 BUILD_OPTIONS="$BUILD_OPTIONS -a X64"
171 PLATFORM_BUILD_DIR=Ovmf$Processor
172 BUILD_ROOT_ARCH=X64
173fi
174
66325870 175case $PROCESSOR in
176 IA32)
7e73a64f
JJ
177 if [ -n "$QEMU_COMMAND" ]; then
178 #
179 # The user set the QEMU_COMMAND variable. We'll use it to run QEMU.
180 #
181 :
182 elif [ -x `which qemu-system-i386` ]; then
0aedc542 183 QEMU_COMMAND=qemu-system-i386
184 elif [ -x `which qemu-system-x86_64` ]; then
185 QEMU_COMMAND=qemu-system-x86_64
186 elif [ -x `which qemu` ]; then
187 QEMU_COMMAND=qemu
188 else
189 echo Unable to find QEMU for IA32 architecture!
190 exit 1
191 fi
66325870 192 ;;
3f35b140 193 X64|IA32X64)
7e73a64f
JJ
194 if [ -z "$QEMU_COMMAND" ]; then
195 #
196 # The user didn't set the QEMU_COMMAND variable.
197 #
198 QEMU_COMMAND=qemu-system-x86_64
199 fi
66325870 200 ;;
201 *)
202 echo Unsupported processor architecture: $PROCESSOR
203 echo Only IA32 or X64 is supported
204 exit 1
205 ;;
5a9745b9 206esac
207
04629652 208if [ -z "$PLATFORMFILE" ]; then
209 PLATFORMFILE=$WORKSPACE/OvmfPkg/OvmfPkg$Processor.dsc
210fi
211
d48ec970
JJ
212if [[ "$RUN_QEMU" == "yes" ]]; then
213 qemu_version=$($QEMU_COMMAND -version 2>&1 | tail -1 | awk '{print $4}')
214 case $qemu_version in
215 1.[6-9].*|1.[1-9][0-9].*|2.*.*)
216 ENABLE_FLASH=yes
66325870 217 ;;
218 esac
d48ec970
JJ
219
220 ADD_QEMU_HDA=yes
221 for arg in "$@"
222 do
223 case $arg in
224 -hd[a-d]|-fd[ab]|-cdrom)
225 ADD_QEMU_HDA=no
226 break
227 ;;
228 esac
229 done
230fi
66325870 231
232#
233# Uncomment this block for parameter parsing debug
234#
235#echo RUN_QEMU=$RUN_QEMU
236#echo BUILD_OPTIONS=$BUILD_OPTIONS
237#echo BUILDTARGET=$BUILDTARGET
238#echo TARGET_TOOLS=$TARGET_TOOLS
239#echo PROCESSOR=$PROCESSOR
240#echo Remaining for qemu: $*
241#exit 1
242
3f35b140 243BUILD_ROOT=$WORKSPACE/Build/$PLATFORM_BUILD_DIR/"$BUILDTARGET"_"$TARGET_TOOLS"
5a9745b9 244FV_DIR=$BUILD_ROOT/FV
3f35b140 245BUILD_ROOT_ARCH=$BUILD_ROOT/$BUILD_ROOT_ARCH
5a9745b9 246QEMU_FIRMWARE_DIR=$BUILD_ROOT/QEMU
247
248if [[ ! -f `which build` || ! -f `which GenFv` ]];
249then
250 # build the tools if they don't yet exist. Bin scheme
251 echo Building tools as they are not in the path
252 make -C $WORKSPACE/BaseTools
253elif [[ ( -f `which build` || -f `which GenFv` ) && ! -d $EDK_TOOLS_PATH/Source/C/bin ]];
254then
255 # build the tools if they don't yet exist. BinWrapper scheme
256 echo Building tools no $EDK_TOOLS_PATH/Source/C/bin directory
257 make -C $WORKSPACE/BaseTools
258else
259 echo using prebuilt tools
260fi
261
262
66325870 263if [[ "$RUN_QEMU" == "yes" ]]; then
264 if [[ ! -d $QEMU_FIRMWARE_DIR ]]; then
265 mkdir $QEMU_FIRMWARE_DIR
5a9745b9 266 fi
eaf4f336 267 ln -sf $FV_DIR/OVMF.fd $QEMU_FIRMWARE_DIR/bios.bin
bc9be821
JJ
268 if [[ "$ENABLE_FLASH" == "yes" ]]; then
269 QEMU_COMMAND="$QEMU_COMMAND -pflash $QEMU_FIRMWARE_DIR/bios.bin"
66325870 270 else
bc9be821
JJ
271 QEMU_COMMAND="$QEMU_COMMAND -L $QEMU_FIRMWARE_DIR"
272 fi
273 if [[ "$ADD_QEMU_HDA" == "yes" ]]; then
274 QEMU_COMMAND="$QEMU_COMMAND -hda fat:$BUILD_ROOT_ARCH"
5a9745b9 275 fi
bc9be821 276 QEMU_COMMAND="$QEMU_COMMAND $*"
66325870 277 echo Running: $QEMU_COMMAND
278 $QEMU_COMMAND
279 exit $?
280fi
5a9745b9 281
282#
283# Build the edk2 OvmfPkg
284#
285echo Running edk2 build for OvmfPkg$Processor
3f35b140 286build -p $PLATFORMFILE $BUILD_OPTIONS -b $BUILDTARGET -t $TARGET_TOOLS -n $THREADNUMBER
5a9745b9 287exit $?
288