summaryrefslogtreecommitdiff
path: root/etc/scons
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2021-02-17 10:29:28 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-02-17 16:07:19 +0000
commit13e8d7c56b5105a318643b9e3e93d4a1058dcb8e (patch)
tree74367800552dbb48eee6d7b1f5002914b2eb535b /etc/scons
parent2863ffba5cfe923c0e0661bc7a1b9d916c696b27 (diff)
downloadmongo-13e8d7c56b5105a318643b9e3e93d4a1058dcb8e.tar.gz
Revert "SERVER-45236 Eliminate need to reiterate compile flags on the link line"
This reverts commit 6674514dfcc5b3ec4e80c2b727c8d7f9f6f6e86f.
Diffstat (limited to 'etc/scons')
-rw-r--r--etc/scons/xcode_macosx.vars2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/scons/xcode_macosx.vars b/etc/scons/xcode_macosx.vars
index 688cfa7c279..dc54001668c 100644
--- a/etc/scons/xcode_macosx.vars
+++ b/etc/scons/xcode_macosx.vars
@@ -15,4 +15,4 @@ if experimental_visibility_support == "on":
sdk_path = subprocess.check_output(['xcrun', '--sdk', 'macosx', '--show-sdk-path']).decode('utf-8').strip()
CCFLAGS = "-isysroot {} -mmacosx-version-min=10.13 -target darwin17.0.0 -arch x86_64".format(sdk_path)
-LINKFLAGS = "-Wl,-syslibroot,{}".format(sdk_path)
+LINKFLAGS = "-Wl,-syslibroot,{} -mmacosx-version-min=10.13 -target darwin17.0.0 -arch x86_64".format(sdk_path)