diff options
author | Moonchild <moonchild@palemoon.org> | 2022-04-16 16:13:03 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2022-04-16 16:13:03 +0000 |
commit | 1191c9e371ba878ccd53f9a8ca44b6a3f348a439 (patch) | |
tree | ca28ad1d2a90cddf8916c601ad458e9efe8fe0b4 /build | |
parent | 9a2da3012a583487e7574572ffd3eb6030ad0964 (diff) | |
parent | bd99ce1461502545d5021055b076b65d1d015c46 (diff) | |
download | uxp-1191c9e371ba878ccd53f9a8ca44b6a3f348a439.tar.gz |
Merge pull request 'Issue #1531 - Bump minimum required GCC version to 7.1' (#1858) from trav90/UXP-contrib:build-system-work into master
Reviewed-on: https://repo.palemoon.org/MoonchildProductions/UXP/pulls/1858
Diffstat (limited to 'build')
-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 |