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 15:53:38 +0000 |
commit | 85e982db8d205297a78f20d3bc0ba93b50e1b1f9 (patch) | |
tree | e414fd98b3c65fbcb7bebb8c6f73399e5f5a3dd2 /etc/scons | |
parent | fccca7a804efdaf008ba859ceeb09d62444b2738 (diff) | |
download | mongo-85e982db8d205297a78f20d3bc0ba93b50e1b1f9.tar.gz |
SERVER-44067 Increase macosx target to 10.13
Diffstat (limited to 'etc/scons')
-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) |