OvmfPkg: Support GCC47 toolchain

When GCC >= 4.7 is detected, use the GCC47 toolchain.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
[jordan.l.justen@intel.com: reword commit message for OvmfPkg]
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13630 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
jljusten 2012-08-13 17:06:49 +00:00
parent 35cfa92c5a
commit 743094a289
1 changed files with 3 additions and 0 deletions

View File

@ -76,6 +76,9 @@ case `uname` in
4.6.*)
TARGET_TOOLS=GCC46
;;
4.[789].*)
TARGET_TOOLS=GCC47
;;
*)
TARGET_TOOLS=GCC44
;;