detect.py 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. import os
  2. import sys
  3. from typing import TYPE_CHECKING
  4. from methods import detect_darwin_sdk_path, get_compiler_version, is_apple_clang, print_error, print_warning
  5. from platform_methods import detect_arch, detect_mvk, validate_arch
  6. if TYPE_CHECKING:
  7. from SCons.Script.SConscript import SConsEnvironment
  8. # To match other platforms
  9. STACK_SIZE = 8388608
  10. STACK_SIZE_SANITIZERS = 30 * 1024 * 1024
  11. def get_name():
  12. return "macOS"
  13. def can_build():
  14. if sys.platform == "darwin" or ("OSXCROSS_ROOT" in os.environ):
  15. return True
  16. return False
  17. def get_opts():
  18. from SCons.Variables import BoolVariable, EnumVariable
  19. return [
  20. ("osxcross_sdk", "OSXCross SDK version", "darwin16"),
  21. ("MACOS_SDK_PATH", "Path to the macOS SDK", ""),
  22. ("vulkan_sdk_path", "Path to the Vulkan SDK", ""),
  23. EnumVariable("macports_clang", "Build using Clang from MacPorts", "no", ["no", "5.0", "devel"], ignorecase=2),
  24. BoolVariable("use_ubsan", "Use LLVM/GCC compiler undefined behavior sanitizer (UBSAN)", False),
  25. BoolVariable("use_asan", "Use LLVM/GCC compiler address sanitizer (ASAN)", False),
  26. BoolVariable("use_tsan", "Use LLVM/GCC compiler thread sanitizer (TSAN)", False),
  27. BoolVariable("use_coverage", "Use instrumentation codes in the binary (e.g. for code coverage)", False),
  28. ("angle_libs", "Path to the ANGLE static libraries", ""),
  29. (
  30. "bundle_sign_identity",
  31. "The 'Full Name', 'Common Name' or SHA-1 hash of the signing identity used to sign editor .app bundle.",
  32. "-",
  33. ),
  34. BoolVariable("generate_bundle", "Generate an APP bundle after building iOS/macOS binaries", False),
  35. ]
  36. def get_doc_classes():
  37. return [
  38. "EditorExportPlatformMacOS",
  39. ]
  40. def get_doc_path():
  41. return "doc_classes"
  42. def get_flags():
  43. return {
  44. "arch": detect_arch(),
  45. "use_volk": False,
  46. "metal": True,
  47. "supported": ["metal", "mono"],
  48. }
  49. def configure(env: "SConsEnvironment"):
  50. # Validate arch.
  51. supported_arches = ["x86_64", "arm64"]
  52. validate_arch(env["arch"], get_name(), supported_arches)
  53. ## Compiler configuration
  54. # Save this in environment for use by other modules
  55. if "OSXCROSS_ROOT" in os.environ:
  56. env["osxcross"] = True
  57. # CPU architecture.
  58. if env["arch"] == "arm64":
  59. print("Building for macOS 11.0+.")
  60. env.Append(ASFLAGS=["-arch", "arm64", "-mmacosx-version-min=11.0"])
  61. env.Append(CCFLAGS=["-arch", "arm64", "-mmacosx-version-min=11.0"])
  62. env.Append(LINKFLAGS=["-arch", "arm64", "-mmacosx-version-min=11.0"])
  63. elif env["arch"] == "x86_64":
  64. print("Building for macOS 10.13+.")
  65. env.Append(ASFLAGS=["-arch", "x86_64", "-mmacosx-version-min=10.13"])
  66. env.Append(CCFLAGS=["-arch", "x86_64", "-mmacosx-version-min=10.13"])
  67. env.Append(LINKFLAGS=["-arch", "x86_64", "-mmacosx-version-min=10.13"])
  68. env.Append(CCFLAGS=["-ffp-contract=off"])
  69. env.Append(CCFLAGS=["-fobjc-arc"])
  70. cc_version = get_compiler_version(env)
  71. cc_version_major = cc_version["apple_major"]
  72. cc_version_minor = cc_version["apple_minor"]
  73. # Workaround for Xcode 15 linker bug.
  74. if is_apple_clang(env) and cc_version_major == 1500 and cc_version_minor == 0:
  75. env.Prepend(LINKFLAGS=["-ld_classic"])
  76. if env.dev_build:
  77. env.Prepend(LINKFLAGS=["-Xlinker", "-no_deduplicate"])
  78. ccache_path = os.environ.get("CCACHE", "")
  79. if ccache_path != "":
  80. ccache_path = ccache_path + " "
  81. if "osxcross" not in env: # regular native build
  82. if env["macports_clang"] != "no":
  83. mpprefix = os.environ.get("MACPORTS_PREFIX", "/opt/local")
  84. mpclangver = env["macports_clang"]
  85. env["CC"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/clang"
  86. env["CXX"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/clang++"
  87. env["AR"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/llvm-ar"
  88. env["RANLIB"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/llvm-ranlib"
  89. env["AS"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/llvm-as"
  90. else:
  91. env["CC"] = ccache_path + "clang"
  92. env["CXX"] = ccache_path + "clang++"
  93. detect_darwin_sdk_path("macos", env)
  94. env.Append(CCFLAGS=["-isysroot", "$MACOS_SDK_PATH"])
  95. env.Append(LINKFLAGS=["-isysroot", "$MACOS_SDK_PATH"])
  96. else: # osxcross build
  97. root = os.environ.get("OSXCROSS_ROOT", "")
  98. if env["arch"] == "arm64":
  99. basecmd = root + "/target/bin/arm64-apple-" + env["osxcross_sdk"] + "-"
  100. else:
  101. basecmd = root + "/target/bin/x86_64-apple-" + env["osxcross_sdk"] + "-"
  102. env["CC"] = ccache_path + basecmd + "cc"
  103. env["CXX"] = ccache_path + basecmd + "c++"
  104. env["AR"] = basecmd + "ar"
  105. env["RANLIB"] = basecmd + "ranlib"
  106. env["AS"] = basecmd + "as"
  107. # LTO
  108. if env["lto"] == "auto": # LTO benefits for macOS (size, performance) haven't been clearly established yet.
  109. env["lto"] = "none"
  110. if env["lto"] != "none":
  111. if env["lto"] == "thin":
  112. env.Append(CCFLAGS=["-flto=thin"])
  113. env.Append(LINKFLAGS=["-flto=thin"])
  114. else:
  115. env.Append(CCFLAGS=["-flto"])
  116. env.Append(LINKFLAGS=["-flto"])
  117. # Sanitizers
  118. if env["use_ubsan"] or env["use_asan"] or env["use_tsan"]:
  119. env.extra_suffix += ".san"
  120. env.Append(CCFLAGS=["-DSANITIZERS_ENABLED"])
  121. if env["use_ubsan"]:
  122. env.Append(
  123. CCFLAGS=[
  124. "-fsanitize=undefined,shift,shift-exponent,integer-divide-by-zero,unreachable,vla-bound,null,return,signed-integer-overflow,bounds,float-divide-by-zero,float-cast-overflow,nonnull-attribute,returns-nonnull-attribute,bool,enum,vptr,pointer-overflow,builtin"
  125. ]
  126. )
  127. env.Append(LINKFLAGS=["-fsanitize=undefined"])
  128. env.Append(CCFLAGS=["-fsanitize=nullability-return,nullability-arg,function,nullability-assign"])
  129. if env["use_asan"]:
  130. env.Append(CCFLAGS=["-fsanitize=address,pointer-subtract,pointer-compare"])
  131. env.Append(LINKFLAGS=["-fsanitize=address"])
  132. if env["use_tsan"]:
  133. env.Append(CCFLAGS=["-fsanitize=thread"])
  134. env.Append(LINKFLAGS=["-fsanitize=thread"])
  135. env.Append(LINKFLAGS=["-Wl,-stack_size," + hex(STACK_SIZE_SANITIZERS)])
  136. else:
  137. env.Append(LINKFLAGS=["-Wl,-stack_size," + hex(STACK_SIZE)])
  138. if env["use_coverage"]:
  139. env.Append(CCFLAGS=["-ftest-coverage", "-fprofile-arcs"])
  140. env.Append(LINKFLAGS=["-ftest-coverage", "-fprofile-arcs"])
  141. ## Dependencies
  142. if env["accesskit"]:
  143. if env["accesskit_sdk_path"] != "":
  144. env.Prepend(CPPPATH=[env["accesskit_sdk_path"] + "/include"])
  145. if env["arch"] == "arm64" or env["arch"] == "universal":
  146. env.Append(LINKFLAGS=["-L" + env["accesskit_sdk_path"] + "/lib/macos/arm64/static/"])
  147. if env["arch"] == "x86_64" or env["arch"] == "universal":
  148. env.Append(LINKFLAGS=["-L" + env["accesskit_sdk_path"] + "/lib/macos/x86_64/static/"])
  149. env.Append(LINKFLAGS=["-laccesskit"])
  150. else:
  151. env.Append(CPPDEFINES=["ACCESSKIT_DYNAMIC"])
  152. env.Append(CPPDEFINES=["ACCESSKIT_ENABLED"])
  153. if env["builtin_libtheora"] and env["arch"] == "x86_64":
  154. env["x86_libtheora_opt_gcc"] = True
  155. ## Flags
  156. env.Prepend(CPPPATH=["#platform/macos"])
  157. env.Append(CPPDEFINES=["MACOS_ENABLED", "UNIX_ENABLED", "COREAUDIO_ENABLED", "COREMIDI_ENABLED"])
  158. env.Append(
  159. LINKFLAGS=[
  160. "-framework",
  161. "Cocoa",
  162. "-framework",
  163. "Carbon",
  164. "-framework",
  165. "AudioUnit",
  166. "-framework",
  167. "CoreAudio",
  168. "-framework",
  169. "CoreMIDI",
  170. "-framework",
  171. "IOKit",
  172. "-framework",
  173. "GameController",
  174. "-framework",
  175. "CoreHaptics",
  176. "-framework",
  177. "CoreVideo",
  178. "-framework",
  179. "AVFoundation",
  180. "-framework",
  181. "CoreMedia",
  182. "-framework",
  183. "QuartzCore",
  184. "-framework",
  185. "Security",
  186. "-framework",
  187. "UniformTypeIdentifiers",
  188. "-framework",
  189. "IOSurface",
  190. ]
  191. )
  192. env.Append(LIBS=["pthread", "z"])
  193. extra_frameworks = set()
  194. if env["opengl3"]:
  195. env.Append(CPPDEFINES=["GLES3_ENABLED"])
  196. if env["angle_libs"] != "":
  197. env.AppendUnique(CPPDEFINES=["EGL_STATIC"])
  198. env.Append(LINKFLAGS=["-L" + env["angle_libs"]])
  199. env.Append(LINKFLAGS=["-lANGLE.macos." + env["arch"]])
  200. env.Append(LINKFLAGS=["-lEGL.macos." + env["arch"]])
  201. env.Append(LINKFLAGS=["-lGLES.macos." + env["arch"]])
  202. env.Prepend(CPPEXTPATH=["#thirdparty/angle/include"])
  203. env.Append(LINKFLAGS=["-rpath", "@executable_path/../Frameworks", "-rpath", "@executable_path"])
  204. if env["metal"] and env["arch"] != "arm64":
  205. print_warning("Target architecture '{}' does not support the Metal rendering driver".format(env["arch"]))
  206. env["metal"] = False
  207. if env["metal"]:
  208. env.AppendUnique(CPPDEFINES=["METAL_ENABLED", "RD_ENABLED"])
  209. extra_frameworks.add("Metal")
  210. extra_frameworks.add("MetalKit")
  211. extra_frameworks.add("MetalFX")
  212. env.Prepend(CPPEXTPATH=["#thirdparty/spirv-cross"])
  213. if env["vulkan"]:
  214. env.AppendUnique(CPPDEFINES=["VULKAN_ENABLED", "RD_ENABLED"])
  215. extra_frameworks.add("Metal")
  216. if not env["use_volk"]:
  217. env.Append(LINKFLAGS=["-lMoltenVK"])
  218. mvk_path = ""
  219. arch_variants = ["macos-arm64_x86_64", "macos-" + env["arch"]]
  220. for arch in arch_variants:
  221. mvk_path = detect_mvk(env, arch)
  222. if mvk_path != "":
  223. mvk_path = os.path.join(mvk_path, arch)
  224. break
  225. if mvk_path != "":
  226. env.Append(LINKFLAGS=["-L" + mvk_path])
  227. else:
  228. print_error(
  229. "MoltenVK SDK installation directory not found, use 'vulkan_sdk_path' SCons parameter to specify SDK path."
  230. )
  231. sys.exit(255)
  232. if len(extra_frameworks) > 0:
  233. frameworks = [item for key in extra_frameworks for item in ["-framework", key]]
  234. env.Append(LINKFLAGS=frameworks)