diff options
Diffstat (limited to 'EmulatorPkg/build.sh')
-rwxr-xr-x | EmulatorPkg/build.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/EmulatorPkg/build.sh b/EmulatorPkg/build.sh index 67648f509a..fc8ae493cd 100755 --- a/EmulatorPkg/build.sh +++ b/EmulatorPkg/build.sh @@ -90,9 +90,15 @@ case `uname` in 4.6.*) TARGET_TOOLS=GCC46 ;; - 4.[789].*) + 4.7.*) TARGET_TOOLS=GCC47 ;; + 4.8.*) + TARGET_TOOLS=GCC48 + ;; + 4.9.*|4.1[0-9].*) + TARGET_TOOLS=GCC49 + ;; *) TARGET_TOOLS=GCC44 ;; |