diff options
author | Moonchild <moonchild@palemoon.org> | 2022-02-13 23:29:34 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2022-03-21 13:21:52 +0000 |
commit | 34aa92b0a957fbe4aff4b2d9c12c38e582c3de79 (patch) | |
tree | 622d02f7454f7d14efcb1a7a47e408d772f562a7 /build | |
parent | 9cc462f9203f56d6693560f6b3011bdf58a4a3cd (diff) | |
download | aura-central-34aa92b0a957fbe4aff4b2d9c12c38e582c3de79.tar.gz |
Issue %7 - Set correct minimum GCC version for GRE.
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 056c6a932..3944c439b 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': 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 |