Files
mongo/etc/scons/xcode_macosx.vars
2017-02-28 07:09:23 -05:00

12 lines
479 B
Plaintext

# Configures the build to use XCode targeting macOS
import subprocess
CC = subprocess.check_output(['xcrun', '-f', '--sdk', 'macosx', 'clang']).strip()
CXX = subprocess.check_output(['xcrun', '-f', '--sdk', 'macosx', 'clang++']).strip()
sdk_path = subprocess.check_output(['xcrun', '--sdk', 'macosx', '--show-sdk-path']).strip()
CCFLAGS = "-isysroot {} -mmacosx-version-min=10.10".format(sdk_path)
LINKFLAGS = "-Wl,-syslibroot,{} -mmacosx-version-min=10.10".format(sdk_path)