Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/platform/ios/detect.py
20952 views
1
import os
2
import sys
3
from typing import TYPE_CHECKING
4
5
from methods import detect_darwin_sdk_path, detect_darwin_toolchain_path, print_error, print_warning
6
from platform_methods import validate_arch
7
8
if TYPE_CHECKING:
9
from SCons.Script.SConscript import SConsEnvironment
10
11
12
def get_name():
13
return "iOS"
14
15
16
def can_build():
17
if sys.platform == "darwin" or ("OSXCROSS_IOS" in os.environ):
18
return True
19
20
return False
21
22
23
def get_opts():
24
from SCons.Variables import BoolVariable
25
26
return [
27
("vulkan_sdk_path", "Path to the Vulkan SDK", ""),
28
("SWIFT_FRONTEND", "Path to the swift-frontend binary", ""),
29
# APPLE_TOOLCHAIN_PATH Example: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
30
(("APPLE_TOOLCHAIN_PATH", "IOS_TOOLCHAIN_PATH"), "Path to the Apple toolchain", ""),
31
(("APPLE_SDK_PATH", "IOS_SDK_PATH"), "Path to the iOS SDK", ""),
32
(("apple_target_triple", "ios_triple"), "Triple for the corresponding target Apple platform toolchain", ""),
33
BoolVariable(("simulator", "ios_simulator"), "Build for Simulator", False),
34
BoolVariable("generate_bundle", "Generate an APP bundle after building iOS/macOS binaries", False),
35
]
36
37
38
def get_doc_classes():
39
return [
40
"EditorExportPlatformIOS",
41
]
42
43
44
def get_doc_path():
45
return "doc_classes"
46
47
48
def get_flags():
49
return {
50
"arch": "arm64",
51
"target": "template_debug",
52
"use_volk": False,
53
"metal": True,
54
"supported": ["metal", "mono"],
55
"builtin_pcre2_with_jit": False,
56
}
57
58
59
def configure(env: "SConsEnvironment"):
60
# Validate arch.
61
supported_arches = ["x86_64", "arm64"]
62
validate_arch(env["arch"], get_name(), supported_arches)
63
detect_darwin_toolchain_path(env)
64
65
## LTO
66
67
if env["lto"] == "auto": # Disable by default as it makes linking in Xcode very slow.
68
env["lto"] = "none"
69
70
if env["lto"] != "none":
71
if env["lto"] == "thin":
72
env.Append(CCFLAGS=["-flto=thin"])
73
env.Append(LINKFLAGS=["-flto=thin"])
74
else:
75
env.Append(CCFLAGS=["-flto"])
76
env.Append(LINKFLAGS=["-flto"])
77
78
## Compiler configuration
79
80
# Save this in environment for use by other modules
81
if "OSXCROSS_IOS" in os.environ:
82
env["osxcross"] = True
83
84
env["ENV"]["PATH"] = env["APPLE_TOOLCHAIN_PATH"] + "/Developer/usr/bin/:" + env["ENV"]["PATH"]
85
86
compiler_path = "$APPLE_TOOLCHAIN_PATH/usr/bin/${apple_target_triple}"
87
88
ccache_path = os.environ.get("CCACHE")
89
if ccache_path is None:
90
env["CC"] = compiler_path + "clang"
91
env["CXX"] = compiler_path + "clang++"
92
env["S_compiler"] = compiler_path + "clang"
93
else:
94
# there aren't any ccache wrappers available for iOS,
95
# to enable caching we need to prepend the path to the ccache binary
96
env["CC"] = ccache_path + " " + compiler_path + "clang"
97
env["CXX"] = ccache_path + " " + compiler_path + "clang++"
98
env["S_compiler"] = ccache_path + " " + compiler_path + "clang"
99
env["AR"] = compiler_path + "ar"
100
env["RANLIB"] = compiler_path + "ranlib"
101
102
## Compile flags
103
104
if env["simulator"]:
105
env["APPLE_PLATFORM"] = "iossimulator"
106
env.Append(ASFLAGS=["-mios-simulator-version-min=14.0"])
107
env.Append(CCFLAGS=["-mios-simulator-version-min=14.0"])
108
env.Append(CPPDEFINES=["IOS_SIMULATOR"])
109
env.extra_suffix = ".simulator" + env.extra_suffix
110
else:
111
env["APPLE_PLATFORM"] = "ios"
112
env.Append(ASFLAGS=["-miphoneos-version-min=14.0"])
113
env.Append(CCFLAGS=["-miphoneos-version-min=14.0"])
114
detect_darwin_sdk_path(env["APPLE_PLATFORM"], env)
115
116
env.Append(CCFLAGS=["-ffp-contract=off"])
117
118
if env["arch"] == "x86_64":
119
if not env["simulator"]:
120
print_error("Building for iOS with 'arch=x86_64' requires 'simulator=yes'.")
121
sys.exit(255)
122
123
env["ENV"]["MACOSX_DEPLOYMENT_TARGET"] = "10.9"
124
env.Append(
125
CCFLAGS=(
126
"-fobjc-arc -arch x86_64"
127
" -fobjc-abi-version=2 -fobjc-legacy-dispatch -fmessage-length=0 -fpascal-strings -fblocks"
128
" -fasm-blocks -isysroot $APPLE_SDK_PATH"
129
).split()
130
)
131
env.Append(ASFLAGS=["-arch", "x86_64"])
132
elif env["arch"] == "arm64":
133
env.Append(
134
CCFLAGS=(
135
"-fobjc-arc -arch arm64 -fmessage-length=0"
136
" -fdiagnostics-print-source-range-info -fdiagnostics-show-category=id -fdiagnostics-parseable-fixits"
137
" -fpascal-strings -fblocks -fvisibility=hidden -MMD -MT dependencies"
138
" -isysroot $APPLE_SDK_PATH".split()
139
)
140
)
141
env.Append(ASFLAGS=["-arch", "arm64"])
142
143
# Temp fix for ABS/MAX/MIN macros in iOS SDK blocking compilation
144
env.Append(CCFLAGS=["-Wno-ambiguous-macro"])
145
146
env.Prepend(
147
CPPPATH=[
148
"$APPLE_SDK_PATH/usr/include",
149
"$APPLE_SDK_PATH/System/Library/Frameworks/AudioUnit.framework/Headers",
150
]
151
)
152
153
env.Prepend(CPPPATH=["#platform/ios"])
154
env.Append(CPPDEFINES=["IOS_ENABLED", "APPLE_EMBEDDED_ENABLED", "UNIX_ENABLED", "COREAUDIO_ENABLED"])
155
156
if env["metal"] and env["simulator"]:
157
print_warning("iOS Simulator does not support the Metal rendering driver")
158
env["metal"] = False
159
160
if env["metal"]:
161
env.AppendUnique(CPPDEFINES=["METAL_ENABLED", "RD_ENABLED"])
162
env.Prepend(
163
CPPPATH=[
164
"$APPLE_SDK_PATH/System/Library/Frameworks/Metal.framework/Headers",
165
"$APPLE_SDK_PATH/System/Library/Frameworks/MetalFX.framework/Headers",
166
"$APPLE_SDK_PATH/System/Library/Frameworks/QuartzCore.framework/Headers",
167
]
168
)
169
env.Prepend(CPPPATH=["#thirdparty/spirv-cross"])
170
171
if env["vulkan"] and env["simulator"]:
172
print_warning("iOS Simulator does not support the Vulkan rendering driver")
173
env["vulkan"] = False
174
175
if env["vulkan"]:
176
env.AppendUnique(CPPDEFINES=["VULKAN_ENABLED", "RD_ENABLED"])
177
178
if env["opengl3"]:
179
env.Append(CPPDEFINES=["GLES3_ENABLED", "GLES_SILENCE_DEPRECATION"])
180
env.Append(CCFLAGS=["-Wno-module-import-in-extern-c"])
181
env.Prepend(
182
CPPPATH=[
183
"$APPLE_SDK_PATH/System/Library/Frameworks/OpenGLES.framework/Headers",
184
]
185
)
186
187