diff options
author | Andrew Morrow <acm@mongodb.com> | 2022-01-05 21:30:55 -0500 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2022-01-24 23:10:10 +0000 |
commit | 01e2d9f3e112dd62fec05e822dc85b1525677ddf (patch) | |
tree | 639d34294fbfaff94f4b06c60e9ea4f9dd388574 /SConstruct | |
parent | a710a2bf41118b848976502839590b66993bf512 (diff) | |
download | mongo-01e2d9f3e112dd62fec05e822dc85b1525677ddf.tar.gz |
SERVER-62503 Use and require Xcode 13 everywhere
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct index 16c3b246af0..446b3dea8e0 100644 --- a/SConstruct +++ b/SConstruct @@ -2713,7 +2713,7 @@ def doConfigure(myenv): } """ % (compiler_minimum_string, compiler_minimum_string)) else: - compiler_minimum_string = "clang 7.0 (or Apple XCode 10.2)" + compiler_minimum_string = "clang 7.0 (or Apple XCode 13.0)" compiler_test_body = textwrap.dedent( """ #if !defined(__clang__) @@ -2721,7 +2721,7 @@ def doConfigure(myenv): #endif #if defined(__apple_build_version__) - #if __apple_build_version__ < 10010046 + #if __apple_build_version__ < 13000029 #error %s or newer is required to build MongoDB #endif #elif (__clang_major__ < 7) || (__clang_major__ == 7 && __clang_minor__ < 0) |