From 13e8d7c56b5105a318643b9e3e93d4a1058dcb8e Mon Sep 17 00:00:00 2001 From: Andrew Morrow Date: Wed, 17 Feb 2021 10:29:28 -0500 Subject: Revert "SERVER-45236 Eliminate need to reiterate compile flags on the link line" This reverts commit 6674514dfcc5b3ec4e80c2b727c8d7f9f6f6e86f. --- etc/scons/xcode_macosx.vars | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'etc/scons') 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) -- cgit v1.2.1