diff options
author | trav90 <travawine@palemoon.org> | 2022-04-12 10:06:02 -0500 |
---|---|---|
committer | trav90 <travawine@palemoon.org> | 2022-04-12 10:06:02 -0500 |
commit | bd99ce1461502545d5021055b076b65d1d015c46 (patch) | |
tree | f4f8ae63cdb0db473a09851383b48ce7e0682f11 | |
parent | bed3776982d1ee2d0fdeecc91d9a11c6ff2f5e03 (diff) | |
download | uxp-bd99ce1461502545d5021055b076b65d1d015c46.tar.gz |
Issue #1531 - Bump minimum required GCC version to 7.1
-rw-r--r-- | build/moz.configure/toolchain.configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/moz.configure/toolchain.configure b/build/moz.configure/toolchain.configure index 056c6a9328..1f2b5ecf07 100644 --- a/build/moz.configure/toolchain.configure +++ b/build/moz.configure/toolchain.configure @@ -675,9 +675,9 @@ def compiler(language, host_or_target, c_compiler=None, other_compiler=None, # Check the compiler version here instead of in `compiler_version` so # that the `checking` message doesn't pretend the compiler can be used # to then bail out one line later. - if info.type == 'gcc' and info.version < '4.9.0': + if info.type == 'gcc' and info.version < '7.1.0': raise FatalCheckError( - 'Only GCC 4.9 or newer is supported (found version %s).' + 'Only GCC 7.1 or newer is supported (found version %s).' % info.version) # If you want to bump the version check here search for |