summaryrefslogtreecommitdiff
path: root/etc/scons/xcode_ios.vars
diff options
context:
space:
mode:
Diffstat (limited to 'etc/scons/xcode_ios.vars')
-rw-r--r--etc/scons/xcode_ios.vars14
1 files changed, 0 insertions, 14 deletions
diff --git a/etc/scons/xcode_ios.vars b/etc/scons/xcode_ios.vars
deleted file mode 100644
index 2c46ef1152f..00000000000
--- a/etc/scons/xcode_ios.vars
+++ /dev/null
@@ -1,14 +0,0 @@
-# Configures the build to use XCode targeting iOS
-
-import subprocess
-
-CC = subprocess.check_output(['xcrun', '-f', '--sdk', 'iphoneos', 'clang']).decode('utf-8').strip()
-CXX = subprocess.check_output(['xcrun', '-f', '--sdk', 'iphoneos', 'clang++']).decode('utf-8').strip()
-
-sdk_path = subprocess.check_output(['xcrun', '--sdk', 'iphoneos', '--show-sdk-path']).decode('utf-8').strip()
-
-CCFLAGS = "-isysroot {} -miphoneos-version-min=11.0 -target darwin17.0.0 -arch arm64 -fembed-bitcode".format(sdk_path)
-LINKFLAGS = "-Wl,-syslibroot,{} -miphoneos-version-min=11.0 -target darwin17.0.0 -arch arm64 -fembed-bitcode".format(sdk_path)
-
-TARGET_OS = "iOS"
-TARGET_ARCH = "aarch64"