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 | 5c516e0cb30763f858073a806e4cabd499e95f41 (patch) | |
tree | b464e1f5ea291d7f6905bfd2b354f6c8cd74abe8 /mfbt | |
parent | 885f8dacfd8306766d6d2e47e9fed2c9c1028f43 (diff) | |
download | uxp-5c516e0cb30763f858073a806e4cabd499e95f41.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) |