summaryrefslogtreecommitdiffstats
path: root/DuetPkg/build64.sh
diff options
context:
space:
mode:
authorJordan Justen <jordan.l.justen@intel.com>2016-04-06 00:39:17 -0700
committerLaszlo Ersek <lersek@redhat.com>2016-04-08 13:47:19 +0200
commit912065fe704aa3e74110a1446c13e1a76d5be231 (patch)
tree7b683be0246bc3164e0a1c0ef7b58c996ca91891 /DuetPkg/build64.sh
parent77833d0b649f5daa5a03cb8ddea3c2048031b583 (diff)
downloadedk2-912065fe704aa3e74110a1446c13e1a76d5be231.tar.gz
edk2-912065fe704aa3e74110a1446c13e1a76d5be231.tar.bz2
edk2-912065fe704aa3e74110a1446c13e1a76d5be231.zip
DuetPkg scripts: Support building with GCC45 - GCC49
Build tested with GCC 5.3 with both IA32 and X64. Unfortunately both seemed to hang very early when boot tested on QEMU. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> Cc: Ruiyu Ni <ruiyu.ni@intel.com> Reviewed-by: Ruiyu Ni <ruiyu.ni@Intel.com>
Diffstat (limited to 'DuetPkg/build64.sh')
-rwxr-xr-xDuetPkg/build64.sh24
1 files changed, 22 insertions, 2 deletions
diff --git a/DuetPkg/build64.sh b/DuetPkg/build64.sh
index d215116f9e..0401c56e12 100755
--- a/DuetPkg/build64.sh
+++ b/DuetPkg/build64.sh
@@ -1,7 +1,7 @@
#!/bin/bash
#
# Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
-# Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2010 - 2016, Intel Corporation. All rights reserved.<BR>
#
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
@@ -56,7 +56,27 @@ case `uname` in
fi
;;
Linux*)
- TARGET_TOOLS=GCC44
+ gcc_version=$(gcc -v 2>&1 | tail -1 | awk '{print $3}')
+ case $gcc_version in
+ 4.5.*)
+ TARGET_TOOLS=GCC45
+ ;;
+ 4.6.*)
+ TARGET_TOOLS=GCC46
+ ;;
+ 4.7.*)
+ TARGET_TOOLS=GCC47
+ ;;
+ 4.8.*)
+ TARGET_TOOLS=GCC48
+ ;;
+ 4.9.*|4.1[0-9].*|5.*.*)
+ TARGET_TOOLS=GCC49
+ ;;
+ *)
+ TARGET_TOOLS=GCC44
+ ;;
+ esac
;;
esac