detect.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  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": ["library", "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(CPPDEFINES=["SANITIZERS_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. if env["library_type"] == "executable":
  136. env.Append(LINKFLAGS=["-Wl,-stack_size," + hex(STACK_SIZE_SANITIZERS)])
  137. elif env["library_type"] == "executable":
  138. env.Append(LINKFLAGS=["-Wl,-stack_size," + hex(STACK_SIZE)])
  139. if env["use_coverage"]:
  140. env.Append(CCFLAGS=["-ftest-coverage", "-fprofile-arcs"])
  141. env.Append(LINKFLAGS=["-ftest-coverage", "-fprofile-arcs"])
  142. ## Dependencies
  143. if env["accesskit"]:
  144. if env["accesskit_sdk_path"] != "":
  145. env.Prepend(CPPPATH=[env["accesskit_sdk_path"] + "/include"])
  146. if env["arch"] == "arm64" or env["arch"] == "universal":
  147. env.Append(LINKFLAGS=["-L" + env["accesskit_sdk_path"] + "/lib/macos/arm64/static/"])
  148. if env["arch"] == "x86_64" or env["arch"] == "universal":
  149. env.Append(LINKFLAGS=["-L" + env["accesskit_sdk_path"] + "/lib/macos/x86_64/static/"])
  150. env.Append(LINKFLAGS=["-laccesskit"])
  151. else:
  152. env.Append(CPPDEFINES=["ACCESSKIT_DYNAMIC"])
  153. env.Append(CPPDEFINES=["ACCESSKIT_ENABLED"])
  154. if env["builtin_libtheora"] and env["arch"] == "x86_64":
  155. env["x86_libtheora_opt_gcc"] = True
  156. if env["sdl"]:
  157. env.Append(CPPDEFINES=["SDL_ENABLED"])
  158. env.Append(LINKFLAGS=["-framework", "ForceFeedback"])
  159. ## Flags
  160. env.Prepend(CPPPATH=["#platform/macos"])
  161. env.Append(CPPDEFINES=["MACOS_ENABLED", "UNIX_ENABLED", "COREAUDIO_ENABLED", "COREMIDI_ENABLED"])
  162. env.Append(
  163. LINKFLAGS=[
  164. "-framework",
  165. "Cocoa",
  166. "-framework",
  167. "Carbon",
  168. "-framework",
  169. "AudioUnit",
  170. "-framework",
  171. "CoreAudio",
  172. "-framework",
  173. "CoreMIDI",
  174. "-framework",
  175. "IOKit",
  176. "-framework",
  177. "GameController",
  178. "-framework",
  179. "CoreHaptics",
  180. "-framework",
  181. "CoreVideo",
  182. "-framework",
  183. "AVFoundation",
  184. "-framework",
  185. "CoreMedia",
  186. "-framework",
  187. "QuartzCore",
  188. "-framework",
  189. "Security",
  190. "-framework",
  191. "UniformTypeIdentifiers",
  192. "-framework",
  193. "IOSurface",
  194. ]
  195. )
  196. env.Append(LIBS=["pthread", "z"])
  197. extra_frameworks = set()
  198. if env["opengl3"]:
  199. env.Append(CPPDEFINES=["GLES3_ENABLED"])
  200. if env["angle_libs"] != "":
  201. env.AppendUnique(CPPDEFINES=["EGL_STATIC"])
  202. env.Append(LINKFLAGS=["-L" + env["angle_libs"]])
  203. env.Append(LINKFLAGS=["-lANGLE.macos." + env["arch"]])
  204. env.Append(LINKFLAGS=["-lEGL.macos." + env["arch"]])
  205. env.Append(LINKFLAGS=["-lGLES.macos." + env["arch"]])
  206. env.Prepend(CPPEXTPATH=["#thirdparty/angle/include"])
  207. env.Append(LINKFLAGS=["-rpath", "@executable_path/../Frameworks", "-rpath", "@executable_path"])
  208. if env["metal"] and env["arch"] != "arm64":
  209. print_warning("Target architecture '{}' does not support the Metal rendering driver".format(env["arch"]))
  210. env["metal"] = False
  211. if env["metal"]:
  212. env.AppendUnique(CPPDEFINES=["METAL_ENABLED", "RD_ENABLED"])
  213. extra_frameworks.add("Metal")
  214. extra_frameworks.add("MetalKit")
  215. extra_frameworks.add("MetalFX")
  216. env.Prepend(CPPEXTPATH=["#thirdparty/spirv-cross"])
  217. if env["vulkan"]:
  218. env.AppendUnique(CPPDEFINES=["VULKAN_ENABLED", "RD_ENABLED"])
  219. extra_frameworks.add("Metal")
  220. if not env["use_volk"]:
  221. env.Append(LINKFLAGS=["-lMoltenVK"])
  222. mvk_path = ""
  223. arch_variants = ["macos-arm64_x86_64", "macos-" + env["arch"]]
  224. for arch in arch_variants:
  225. mvk_path = detect_mvk(env, arch)
  226. if mvk_path != "":
  227. mvk_path = os.path.join(mvk_path, arch)
  228. break
  229. if mvk_path != "":
  230. env.Append(LINKFLAGS=["-L" + mvk_path])
  231. else:
  232. print_error(
  233. "MoltenVK SDK installation directory not found, use 'vulkan_sdk_path' SCons parameter to specify SDK path."
  234. )
  235. sys.exit(255)
  236. if len(extra_frameworks) > 0:
  237. frameworks = [item for key in extra_frameworks for item in ["-framework", key]]
  238. env.Append(LINKFLAGS=frameworks)