Bug 1144155 Part 2: Bump the MFBT GCC requirement to 4.7. r=glandium

This commit is contained in:
Bob Owen 2015-03-19 10:56:13 +00:00
parent ecd52abb67
commit 60b1bc327d

View File

@ -23,8 +23,8 @@
# define MOZ_GCC_VERSION_AT_LEAST(major, minor, patchlevel) \
((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) \
>= ((major) * 10000 + (minor) * 100 + (patchlevel)))
# if !MOZ_GCC_VERSION_AT_LEAST(4, 6, 0)
# error "mfbt (and Gecko) require at least gcc 4.6 to build."
# if !MOZ_GCC_VERSION_AT_LEAST(4, 7, 0)
# error "mfbt (and Gecko) require at least gcc 4.7 to build."
# endif
#elif defined(_MSC_VER)