mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 01:21:03 +01:00
Revert "SERVER-15357 Require GCC 4.8.2 now that our Solaris toolchain is updated"
This reverts commit 383c185480
.
This commit is contained in:
parent
0a3ff55d57
commit
b5d97eeeea
@ -1127,14 +1127,17 @@ def doConfigure(myenv):
|
||||
}
|
||||
""" % compiler_minimum_string)
|
||||
elif using_gcc():
|
||||
compiler_minimum_string = "GCC 4.8.2"
|
||||
# TODO: Really, we want GCC 4.8.2 here, but we are admitting 4.8.1
|
||||
# until our Solaris toolchain solution reaches 4.8.2. When our Solaris
|
||||
# toolchain reaches 4.8.2, upgrade this string, and the check below.
|
||||
compiler_minimum_string = "GCC 4.8.1"
|
||||
compiler_test_body = textwrap.dedent(
|
||||
"""
|
||||
#if !defined(__GNUC__) || defined(__clang__)
|
||||
#error
|
||||
#endif
|
||||
|
||||
#if (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 8) || (__GNUC__ == 4 && __GNUC_MINOR__ == 8 && __GNUC_PATCHLEVEL__ < 2)
|
||||
#if (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 8) || (__GNUC__ == 4 && __GNUC_MINOR__ == 8 && __GNUC_PATCHLEVEL__ < 1)
|
||||
#error %s or newer is required to build MongoDB
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user