detect.py 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  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. ## 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["builtin_libtheora"] and env["arch"] == "x86_64":
  143. env["x86_libtheora_opt_gcc"] = True
  144. ## Flags
  145. env.Prepend(CPPPATH=["#platform/macos"])
  146. env.Append(CPPDEFINES=["MACOS_ENABLED", "UNIX_ENABLED", "COREAUDIO_ENABLED", "COREMIDI_ENABLED"])
  147. env.Append(
  148. LINKFLAGS=[
  149. "-framework",
  150. "Cocoa",
  151. "-framework",
  152. "Carbon",
  153. "-framework",
  154. "AudioUnit",
  155. "-framework",
  156. "CoreAudio",
  157. "-framework",
  158. "CoreMIDI",
  159. "-framework",
  160. "IOKit",
  161. "-framework",
  162. "GameController",
  163. "-framework",
  164. "CoreHaptics",
  165. "-framework",
  166. "CoreVideo",
  167. "-framework",
  168. "AVFoundation",
  169. "-framework",
  170. "CoreMedia",
  171. "-framework",
  172. "QuartzCore",
  173. "-framework",
  174. "Security",
  175. "-framework",
  176. "UniformTypeIdentifiers",
  177. ]
  178. )
  179. env.Append(LIBS=["pthread", "z"])
  180. if env["opengl3"]:
  181. env.Append(CPPDEFINES=["GLES3_ENABLED"])
  182. if env["angle_libs"] != "":
  183. env.AppendUnique(CPPDEFINES=["EGL_STATIC"])
  184. env.Append(LINKFLAGS=["-L" + env["angle_libs"]])
  185. env.Append(LINKFLAGS=["-lANGLE.macos." + env["arch"]])
  186. env.Append(LINKFLAGS=["-lEGL.macos." + env["arch"]])
  187. env.Append(LINKFLAGS=["-lGLES.macos." + env["arch"]])
  188. env.Prepend(CPPPATH=["#thirdparty/angle/include"])
  189. env.Append(LINKFLAGS=["-rpath", "@executable_path/../Frameworks", "-rpath", "@executable_path"])
  190. if env["metal"] and env["arch"] != "arm64":
  191. print_warning("Target architecture '{}' does not support the Metal rendering driver".format(env["arch"]))
  192. env["metal"] = False
  193. extra_frameworks = set()
  194. if env["metal"]:
  195. env.AppendUnique(CPPDEFINES=["METAL_ENABLED", "RD_ENABLED"])
  196. extra_frameworks.add("Metal")
  197. extra_frameworks.add("MetalKit")
  198. extra_frameworks.add("MetalFX")
  199. env.Prepend(CPPPATH=["#thirdparty/spirv-cross"])
  200. if env["vulkan"]:
  201. env.AppendUnique(CPPDEFINES=["VULKAN_ENABLED", "RD_ENABLED"])
  202. extra_frameworks.add("Metal")
  203. extra_frameworks.add("IOSurface")
  204. if not env["use_volk"]:
  205. env.Append(LINKFLAGS=["-lMoltenVK"])
  206. mvk_path = ""
  207. arch_variants = ["macos-arm64_x86_64", "macos-" + env["arch"]]
  208. for arch in arch_variants:
  209. mvk_path = detect_mvk(env, arch)
  210. if mvk_path != "":
  211. mvk_path = os.path.join(mvk_path, arch)
  212. break
  213. if mvk_path != "":
  214. env.Append(LINKFLAGS=["-L" + mvk_path])
  215. else:
  216. print_error(
  217. "MoltenVK SDK installation directory not found, use 'vulkan_sdk_path' SCons parameter to specify SDK path."
  218. )
  219. sys.exit(255)
  220. if len(extra_frameworks) > 0:
  221. frameworks = [item for key in extra_frameworks for item in ["-framework", key]]
  222. env.Append(LINKFLAGS=frameworks)