diff options
author | Andrew Morrow <acm@mongodb.com> | 2020-04-17 14:57:16 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-04-20 17:46:11 +0000 |
commit | e6eed7f13fe3ea9098e35ff6474b36b1f9cd21bb (patch) | |
tree | e6cfd445c19089e2d7c231caafc9555ec0214194 /etc | |
parent | 647b27bc349048ec9d029c6f9789fc833ad9f56b (diff) | |
download | mongo-e6eed7f13fe3ea9098e35ff6474b36b1f9cd21bb.tar.gz |
SERVER-44067 Increase macosx target to 10.13
(cherry picked from commit 85e982db8d205297a78f20d3bc0ba93b50e1b1f9)
Diffstat (limited to 'etc')
-rw-r--r-- | etc/scons/xcode_macosx.vars | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/scons/xcode_macosx.vars b/etc/scons/xcode_macosx.vars index 1c64c7435c0..9b222344749 100644 --- a/etc/scons/xcode_macosx.vars +++ b/etc/scons/xcode_macosx.vars @@ -9,5 +9,5 @@ STRIP = subprocess.check_output(['xcrun', '-f', '--sdk', 'macosx', 'strip']).dec sdk_path = subprocess.check_output(['xcrun', '--sdk', 'macosx', '--show-sdk-path']).decode('utf-8').strip() -CCFLAGS = "-isysroot {} -mmacosx-version-min=10.12 -target darwin16.0.0 -arch x86_64".format(sdk_path) -LINKFLAGS = "-Wl,-syslibroot,{} -mmacosx-version-min=10.12 -target darwin16.0.0 -arch x86_64".format(sdk_path) +CCFLAGS = "-isysroot {} -mmacosx-version-min=10.13 -target darwin17.0.0 -arch x86_64".format(sdk_path) +LINKFLAGS = "-Wl,-syslibroot,{} -mmacosx-version-min=10.13 -target darwin17.0.0 -arch x86_64".format(sdk_path) |