EmulatorPkg/build.sh: Merge GCC toolchain detection from OVMF

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
This commit is contained in:
Jordan Justen 2017-06-01 16:42:38 -07:00
parent b0b626ea2f
commit a04ec6d9f7
1 changed files with 9 additions and 2 deletions

View File

@ -93,6 +93,13 @@ case `uname` in
gcc_version=$(gcc -v 2>&1 | tail -1 | awk '{print $3}')
case $gcc_version in
[1-3].*|4.[0-3].*)
echo EmulatorPkg requires GCC4.4 or later
exit 1
;;
4.4.*)
TARGET_TOOLS=GCC44
;;
4.5.*)
TARGET_TOOLS=GCC45
;;
@ -105,11 +112,11 @@ case `uname` in
4.8.*)
TARGET_TOOLS=GCC48
;;
4.9.*|4.1[0-9].*|5.*.*)
4.9.*|6.[0-2].*)
TARGET_TOOLS=GCC49
;;
*)
TARGET_TOOLS=GCC44
TARGET_TOOLS=GCC5
;;
esac
;;