summaryrefslogtreecommitdiffstats
path: root/build/moz.configure
diff options
context:
space:
mode:
authortrav90 <travawine@openmailbox.org>2018-02-04 12:12:38 -0600
committertrav90 <travawine@openmailbox.org>2018-02-04 12:12:38 -0600
commit048149389cd9d216bd36a2ecde2076312c265c9e (patch)
treeb464e1f5ea291d7f6905bfd2b354f6c8cd74abe8 /build/moz.configure
parent3ef4f63ec257cf90ad4bf8695a1e4e291f811af2 (diff)
downloadUXP-048149389cd9d216bd36a2ecde2076312c265c9e.tar
UXP-048149389cd9d216bd36a2ecde2076312c265c9e.tar.gz
UXP-048149389cd9d216bd36a2ecde2076312c265c9e.tar.lz
UXP-048149389cd9d216bd36a2ecde2076312c265c9e.tar.xz
UXP-048149389cd9d216bd36a2ecde2076312c265c9e.zip
Require at least GCC 4.9 to build
Diffstat (limited to 'build/moz.configure')
-rw-r--r--build/moz.configure/toolchain.configure4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/moz.configure/toolchain.configure b/build/moz.configure/toolchain.configure
index 8b2416152..5e9fcc384 100644
--- a/build/moz.configure/toolchain.configure
+++ b/build/moz.configure/toolchain.configure
@@ -686,9 +686,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.8.0':
+ if info.type == 'gcc' and info.version < '4.9.0':
raise FatalCheckError(
- 'Only GCC 4.8 or newer is supported (found version %s).'
+ 'Only GCC 4.9 or newer is supported (found version %s).'
% info.version)
# If you want to bump the version check here search for