detect.py 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  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")),
  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. ## Build type
  54. if env["target"] == "template_release":
  55. if env["arch"] != "arm64":
  56. env.Prepend(CCFLAGS=["-msse2"])
  57. elif env.dev_build:
  58. env.Prepend(LINKFLAGS=["-Xlinker", "-no_deduplicate"])
  59. ## Compiler configuration
  60. # Save this in environment for use by other modules
  61. if "OSXCROSS_ROOT" in os.environ:
  62. env["osxcross"] = True
  63. # CPU architecture.
  64. if env["arch"] == "arm64":
  65. print("Building for macOS 11.0+.")
  66. env.Append(ASFLAGS=["-arch", "arm64", "-mmacosx-version-min=11.0"])
  67. env.Append(CCFLAGS=["-arch", "arm64", "-mmacosx-version-min=11.0"])
  68. env.Append(LINKFLAGS=["-arch", "arm64", "-mmacosx-version-min=11.0"])
  69. elif env["arch"] == "x86_64":
  70. print("Building for macOS 10.13+.")
  71. env.Append(ASFLAGS=["-arch", "x86_64", "-mmacosx-version-min=10.13"])
  72. env.Append(CCFLAGS=["-arch", "x86_64", "-mmacosx-version-min=10.13"])
  73. env.Append(LINKFLAGS=["-arch", "x86_64", "-mmacosx-version-min=10.13"])
  74. env.Append(CCFLAGS=["-ffp-contract=off"])
  75. cc_version = get_compiler_version(env)
  76. cc_version_major = cc_version["apple_major"]
  77. cc_version_minor = cc_version["apple_minor"]
  78. # Workaround for Xcode 15 linker bug.
  79. if is_apple_clang(env) and cc_version_major == 1500 and cc_version_minor == 0:
  80. env.Prepend(LINKFLAGS=["-ld_classic"])
  81. env.Append(CCFLAGS=["-fobjc-arc"])
  82. if "osxcross" not in env: # regular native build
  83. if env["macports_clang"] != "no":
  84. mpprefix = os.environ.get("MACPORTS_PREFIX", "/opt/local")
  85. mpclangver = env["macports_clang"]
  86. env["CC"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/clang"
  87. env["CXX"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/clang++"
  88. env["AR"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/llvm-ar"
  89. env["RANLIB"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/llvm-ranlib"
  90. env["AS"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/llvm-as"
  91. else:
  92. env["CC"] = "clang"
  93. env["CXX"] = "clang++"
  94. detect_darwin_sdk_path("macos", env)
  95. env.Append(CCFLAGS=["-isysroot", "$MACOS_SDK_PATH"])
  96. env.Append(LINKFLAGS=["-isysroot", "$MACOS_SDK_PATH"])
  97. else: # osxcross build
  98. root = os.environ.get("OSXCROSS_ROOT", "")
  99. if env["arch"] == "arm64":
  100. basecmd = root + "/target/bin/arm64-apple-" + env["osxcross_sdk"] + "-"
  101. else:
  102. basecmd = root + "/target/bin/x86_64-apple-" + env["osxcross_sdk"] + "-"
  103. ccache_path = os.environ.get("CCACHE")
  104. if ccache_path is None:
  105. env["CC"] = basecmd + "cc"
  106. env["CXX"] = basecmd + "c++"
  107. else:
  108. # there aren't any ccache wrappers available for macOS cross-compile,
  109. # to enable caching we need to prepend the path to the ccache binary
  110. env["CC"] = ccache_path + " " + basecmd + "cc"
  111. env["CXX"] = ccache_path + " " + basecmd + "c++"
  112. env["AR"] = basecmd + "ar"
  113. env["RANLIB"] = basecmd + "ranlib"
  114. env["AS"] = basecmd + "as"
  115. # LTO
  116. if env["lto"] == "auto": # LTO benefits for macOS (size, performance) haven't been clearly established yet.
  117. env["lto"] = "none"
  118. if env["lto"] != "none":
  119. if env["lto"] == "thin":
  120. env.Append(CCFLAGS=["-flto=thin"])
  121. env.Append(LINKFLAGS=["-flto=thin"])
  122. else:
  123. env.Append(CCFLAGS=["-flto"])
  124. env.Append(LINKFLAGS=["-flto"])
  125. # Sanitizers
  126. if env["use_ubsan"] or env["use_asan"] or env["use_tsan"]:
  127. env.extra_suffix += ".san"
  128. env.Append(CCFLAGS=["-DSANITIZERS_ENABLED"])
  129. if env["use_ubsan"]:
  130. env.Append(
  131. CCFLAGS=[
  132. "-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"
  133. ]
  134. )
  135. env.Append(LINKFLAGS=["-fsanitize=undefined"])
  136. env.Append(CCFLAGS=["-fsanitize=nullability-return,nullability-arg,function,nullability-assign"])
  137. if env["use_asan"]:
  138. env.Append(CCFLAGS=["-fsanitize=address,pointer-subtract,pointer-compare"])
  139. env.Append(LINKFLAGS=["-fsanitize=address"])
  140. if env["use_tsan"]:
  141. env.Append(CCFLAGS=["-fsanitize=thread"])
  142. env.Append(LINKFLAGS=["-fsanitize=thread"])
  143. env.Append(LINKFLAGS=["-Wl,-stack_size," + hex(STACK_SIZE_SANITIZERS)])
  144. else:
  145. env.Append(LINKFLAGS=["-Wl,-stack_size," + hex(STACK_SIZE)])
  146. if env["use_coverage"]:
  147. env.Append(CCFLAGS=["-ftest-coverage", "-fprofile-arcs"])
  148. env.Append(LINKFLAGS=["-ftest-coverage", "-fprofile-arcs"])
  149. ## Dependencies
  150. if env["builtin_libtheora"] and env["arch"] == "x86_64":
  151. env["x86_libtheora_opt_gcc"] = True
  152. ## Flags
  153. env.Prepend(CPPPATH=["#platform/macos"])
  154. env.Append(CPPDEFINES=["MACOS_ENABLED", "UNIX_ENABLED", "COREAUDIO_ENABLED", "COREMIDI_ENABLED"])
  155. env.Append(
  156. LINKFLAGS=[
  157. "-framework",
  158. "Cocoa",
  159. "-framework",
  160. "Carbon",
  161. "-framework",
  162. "AudioUnit",
  163. "-framework",
  164. "CoreAudio",
  165. "-framework",
  166. "CoreMIDI",
  167. "-framework",
  168. "IOKit",
  169. "-framework",
  170. "GameController",
  171. "-framework",
  172. "CoreHaptics",
  173. "-framework",
  174. "CoreVideo",
  175. "-framework",
  176. "AVFoundation",
  177. "-framework",
  178. "CoreMedia",
  179. "-framework",
  180. "QuartzCore",
  181. "-framework",
  182. "Security",
  183. ]
  184. )
  185. env.Append(LIBS=["pthread", "z"])
  186. if env["opengl3"]:
  187. env.Append(CPPDEFINES=["GLES3_ENABLED"])
  188. if env["angle_libs"] != "":
  189. env.AppendUnique(CPPDEFINES=["EGL_STATIC"])
  190. env.Append(LINKFLAGS=["-L" + env["angle_libs"]])
  191. env.Append(LINKFLAGS=["-lANGLE.macos." + env["arch"]])
  192. env.Append(LINKFLAGS=["-lEGL.macos." + env["arch"]])
  193. env.Append(LINKFLAGS=["-lGLES.macos." + env["arch"]])
  194. env.Prepend(CPPPATH=["#thirdparty/angle/include"])
  195. env.Append(LINKFLAGS=["-rpath", "@executable_path/../Frameworks", "-rpath", "@executable_path"])
  196. if env["metal"] and env["arch"] != "arm64":
  197. print_warning("Target architecture '{}' does not support the Metal rendering driver".format(env["arch"]))
  198. env["metal"] = False
  199. extra_frameworks = set()
  200. if env["metal"]:
  201. env.AppendUnique(CPPDEFINES=["METAL_ENABLED", "RD_ENABLED"])
  202. extra_frameworks.add("Metal")
  203. extra_frameworks.add("MetalKit")
  204. env.Prepend(CPPPATH=["#thirdparty/spirv-cross"])
  205. if env["vulkan"]:
  206. env.AppendUnique(CPPDEFINES=["VULKAN_ENABLED", "RD_ENABLED"])
  207. extra_frameworks.add("Metal")
  208. extra_frameworks.add("IOSurface")
  209. if not env["use_volk"]:
  210. env.Append(LINKFLAGS=["-lMoltenVK"])
  211. mvk_path = ""
  212. arch_variants = ["macos-arm64_x86_64", "macos-" + env["arch"]]
  213. for arch in arch_variants:
  214. mvk_path = detect_mvk(env, arch)
  215. if mvk_path != "":
  216. mvk_path = os.path.join(mvk_path, arch)
  217. break
  218. if mvk_path != "":
  219. env.Append(LINKFLAGS=["-L" + mvk_path])
  220. else:
  221. print_error(
  222. "MoltenVK SDK installation directory not found, use 'vulkan_sdk_path' SCons parameter to specify SDK path."
  223. )
  224. sys.exit(255)
  225. if len(extra_frameworks) > 0:
  226. frameworks = [item for key in extra_frameworks for item in ["-framework", key]]
  227. env.Append(LINKFLAGS=frameworks)