summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorRyan Egesdahl <ryan.egesdahl@mongodb.com>2021-07-22 12:12:23 -0700
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-07-26 15:36:30 +0000
commita6f432b4970ab1d80a418f3f1ccf53cf0e0c9fc4 (patch)
treea3e983cd8be1f2bfa0f6c62a593c04fc4a213342 /SConstruct
parent21298b120e831a2aa2c834cc29043f32f2ccc0d9 (diff)
downloadmongo-a6f432b4970ab1d80a418f3f1ccf53cf0e0c9fc4.tar.gz
SERVER-58746 Set minimum OSX build requirement to 10.14
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct6
1 files changed, 3 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct
index 31939139c5c..b3b14271e39 100644
--- a/SConstruct
+++ b/SConstruct
@@ -2851,7 +2851,7 @@ def doConfigure(myenv):
conf.Finish()
- # We require macOS 10.12 or newer
+ # We require macOS 10.14 or newer
if env.TargetOSIs('darwin'):
# TODO: Better error messages, mention the various -mX-version-min-flags in the error, and
@@ -2862,7 +2862,7 @@ def doConfigure(myenv):
#include <AvailabilityMacros.h>
#include <TargetConditionals.h>
- #if TARGET_OS_OSX && (__MAC_OS_X_VERSION_MIN_REQUIRED < __MAC_10_12)
+ #if TARGET_OS_OSX && (__MAC_OS_X_VERSION_MIN_REQUIRED < __MAC_10_14)
#error 1
#endif
"""
@@ -2877,7 +2877,7 @@ def doConfigure(myenv):
})
if not conf.CheckDarwinMinima():
- conf.env.ConfError("Required target minimum of macOS 10.12 not found")
+ conf.env.ConfError("Required target minimum of macOS 10.14 not found")
conf.Finish()