0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-22 04:59:34 +01:00
mongodb/etc/scons/xcode_macosx_arm.vars
Zack Winter 2ca97c9696 SERVER-88534 Disable TAPI on MacOS (#20572)
GitOrigin-RevId: b1457dc43233ee34e42e846ecee16393f733901e
2024-03-30 01:35:05 +00:00

21 lines
1.2 KiB
Plaintext

# Configures the build to use XCode targeting macOS
import subprocess
import SCons
CC = subprocess.check_output(['xcrun', '-f', '--sdk', 'macosx', 'clang']).decode('utf-8').strip()
CXX = subprocess.check_output(['xcrun', '-f', '--sdk', 'macosx', 'clang++']).decode('utf-8').strip()
DSYMUTIL = subprocess.check_output(['xcrun', '-f', '--sdk', 'macosx', 'dsymutil']).decode('utf-8').strip()
STRIP = subprocess.check_output(['xcrun', '-f', '--sdk', 'macosx', 'strip']).decode('utf-8').strip()
# TAPI is less useful when running with Bazel + Remote Execution. Disable since the initial implementation
# of the build system with Bazel will not support it.
# TODO(SERVER-88612): Uncomment if we decide to implement TAPI support in Bazel
# TAPI = subprocess.check_output(['xcrun', '-f', '--sdk', 'macosx', 'tapi']).decode('utf-8').strip()
sdk_path = subprocess.check_output(['xcrun', '--sdk', 'macosx', '--show-sdk-path']).decode('utf-8').strip()
CCFLAGS = "-isysroot {} -mmacosx-version-min=11.0 --target=darwin20.0.0 -arch arm64".format(sdk_path)
ASFLAGS = "-isysroot {} -mmacosx-version-min=11.0 --target=darwin20.0.0 -arch arm64".format(sdk_path)
LINKFLAGS = "-Wl,-syslibroot,{} -mmacosx-version-min=11.0 --target=darwin20.0.0 -arch arm64".format(sdk_path)