diff options
author | Laszlo Ersek <lersek@redhat.com> | 2019-03-08 22:48:50 +0100 |
---|---|---|
committer | Laszlo Ersek <lersek@redhat.com> | 2019-04-17 15:38:35 +0200 |
commit | 461de3c56097759ea30d0a942896a70379dd512b (patch) | |
tree | 76e78bda96835fd4dd6db3d3bbae3170df53d8f2 /roms | |
parent | 65a109ab4b1a6fe2e78c6be47d195dcb1ab89e9b (diff) |
roms/edk2-funcs.sh: require gcc-4.8+ for building i386 and x86_64
Adapt the qemu_edk2_get_toolchain() function in "roms/edk2-funcs.sh" in
advance to edk2 commit 8d7cdfae8cb8 ("OvmfPkg: require GCC48 or later",
2019-01-08), which is part of the "edk2-stable201903" tag.
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Tested-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Diffstat (limited to 'roms')
-rw-r--r-- | roms/edk2-funcs.sh | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/roms/edk2-funcs.sh b/roms/edk2-funcs.sh index 8930479dcb..d1cb1e4a11 100644 --- a/roms/edk2-funcs.sh +++ b/roms/edk2-funcs.sh @@ -149,23 +149,11 @@ qemu_edk2_get_toolchain() # Run "git-blame" on "OvmfPkg/build.sh" in edk2 for more information on # the mapping below. case "$gcc_version" in - ([1-3].*|4.[0-3].*) + ([1-3].*|4.[0-7].*) printf '%s: unsupported gcc version "%s"\n' \ "$program_name" "$gcc_version" >&2 return 1 ;; - (4.4.*) - printf 'GCC44\n' - ;; - (4.5.*) - printf 'GCC45\n' - ;; - (4.6.*) - printf 'GCC46\n' - ;; - (4.7.*) - printf 'GCC47\n' - ;; (4.8.*) printf 'GCC48\n' ;; |