diff options
author | trav90 <travawine@openmailbox.org> | 2018-02-04 12:12:38 -0600 |
---|---|---|
committer | trav90 <travawine@openmailbox.org> | 2018-02-04 12:12:38 -0600 |
commit | 048149389cd9d216bd36a2ecde2076312c265c9e (patch) | |
tree | b464e1f5ea291d7f6905bfd2b354f6c8cd74abe8 /mfbt | |
parent | 3ef4f63ec257cf90ad4bf8695a1e4e291f811af2 (diff) | |
download | uxp-048149389cd9d216bd36a2ecde2076312c265c9e.tar.gz |
Require at least GCC 4.9 to build
Diffstat (limited to 'mfbt')
-rw-r--r-- | mfbt/Compiler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mfbt/Compiler.h b/mfbt/Compiler.h index 1bd34d329c..a4fb4b5f8c 100644 --- a/mfbt/Compiler.h +++ b/mfbt/Compiler.h @@ -26,8 +26,8 @@ # define MOZ_GCC_VERSION_AT_MOST(major, minor, patchlevel) \ ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) \ <= ((major) * 10000 + (minor) * 100 + (patchlevel))) -# if !MOZ_GCC_VERSION_AT_LEAST(4, 8, 0) -# error "mfbt (and Gecko) require at least gcc 4.8 to build." +# if !MOZ_GCC_VERSION_AT_LEAST(4, 9, 0) +# error "mfbt (and Goanna) require at least gcc 4.9 to build." # endif #elif defined(_MSC_VER) |