detect.py 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. import os
  2. import sys
  3. import platform
  4. import subprocess
  5. from typing import TYPE_CHECKING
  6. if TYPE_CHECKING:
  7. from SCons import Environment
  8. def is_active():
  9. return True
  10. def get_name():
  11. return "Android"
  12. def can_build():
  13. return os.path.exists(get_env_android_sdk_root())
  14. def get_opts():
  15. from SCons.Variables import BoolVariable
  16. return [
  17. ("ANDROID_SDK_ROOT", "Path to the Android SDK", get_env_android_sdk_root()),
  18. (
  19. "ndk_platform",
  20. 'Target platform (android-<api>, e.g. "android-' + str(get_min_target_api()) + '")',
  21. "android-" + str(get_min_target_api()),
  22. ),
  23. BoolVariable("store_release", "Editor build for Google Play Store (for official builds only)", False),
  24. ]
  25. def get_doc_classes():
  26. return [
  27. "EditorExportPlatformAndroid",
  28. ]
  29. def get_doc_path():
  30. return "doc_classes"
  31. # Return the ANDROID_SDK_ROOT environment variable.
  32. def get_env_android_sdk_root():
  33. return os.environ.get("ANDROID_SDK_ROOT", -1)
  34. def get_min_sdk_version(platform):
  35. return int(platform.split("-")[1])
  36. def get_android_ndk_root(env):
  37. return env["ANDROID_SDK_ROOT"] + "/ndk/" + get_ndk_version()
  38. # This is kept in sync with the value in 'platform/android/java/app/config.gradle'.
  39. def get_ndk_version():
  40. return "23.2.8568313"
  41. # This is kept in sync with the value in 'platform/android/java/app/config.gradle'.
  42. def get_min_target_api():
  43. return 21
  44. def get_flags():
  45. return [
  46. ("arch", "arm64"), # Default for convenience.
  47. ("target", "template_debug"),
  48. ]
  49. # Check if Android NDK version is installed
  50. # If not, install it.
  51. def install_ndk_if_needed(env):
  52. print("Checking for Android NDK...")
  53. sdk_root = env["ANDROID_SDK_ROOT"]
  54. if not os.path.exists(get_android_ndk_root(env)):
  55. extension = ".bat" if os.name == "nt" else ""
  56. sdkmanager = sdk_root + "/cmdline-tools/latest/bin/sdkmanager" + extension
  57. if os.path.exists(sdkmanager):
  58. # Install the Android NDK
  59. print("Installing Android NDK...")
  60. ndk_download_args = "ndk;" + get_ndk_version()
  61. subprocess.check_call([sdkmanager, ndk_download_args])
  62. else:
  63. print("Cannot find " + sdkmanager)
  64. print(
  65. "Please ensure ANDROID_SDK_ROOT is correct and cmdline-tools are installed, or install NDK version "
  66. + get_ndk_version()
  67. + " manually."
  68. )
  69. sys.exit()
  70. env["ANDROID_NDK_ROOT"] = get_android_ndk_root(env)
  71. def configure(env: "Environment"):
  72. # Validate arch.
  73. supported_arches = ["x86_32", "x86_64", "arm32", "arm64"]
  74. if env["arch"] not in supported_arches:
  75. print(
  76. 'Unsupported CPU architecture "%s" for Android. Supported architectures are: %s.'
  77. % (env["arch"], ", ".join(supported_arches))
  78. )
  79. sys.exit()
  80. if get_min_sdk_version(env["ndk_platform"]) < get_min_target_api():
  81. print(
  82. "WARNING: minimum supported Android target api is %d. Forcing target api %d."
  83. % (get_min_target_api(), get_min_target_api())
  84. )
  85. env["ndk_platform"] = "android-" + str(get_min_target_api())
  86. install_ndk_if_needed(env)
  87. ndk_root = env["ANDROID_NDK_ROOT"]
  88. # Architecture
  89. if env["arch"] == "arm32":
  90. target_triple = "armv7a-linux-androideabi"
  91. elif env["arch"] == "arm64":
  92. target_triple = "aarch64-linux-android"
  93. elif env["arch"] == "x86_32":
  94. target_triple = "i686-linux-android"
  95. elif env["arch"] == "x86_64":
  96. target_triple = "x86_64-linux-android"
  97. target_option = ["-target", target_triple + str(get_min_sdk_version(env["ndk_platform"]))]
  98. env.Append(ASFLAGS=[target_option, "-c"])
  99. env.Append(CCFLAGS=target_option)
  100. env.Append(LINKFLAGS=target_option)
  101. # LTO
  102. if env["lto"] == "auto": # LTO benefits for Android (size, performance) haven't been clearly established yet.
  103. env["lto"] = "none"
  104. if env["lto"] != "none":
  105. if env["lto"] == "thin":
  106. env.Append(CCFLAGS=["-flto=thin"])
  107. env.Append(LINKFLAGS=["-flto=thin"])
  108. else:
  109. env.Append(CCFLAGS=["-flto"])
  110. env.Append(LINKFLAGS=["-flto"])
  111. # Compiler configuration
  112. env["SHLIBSUFFIX"] = ".so"
  113. if env["PLATFORM"] == "win32":
  114. env.use_windows_spawn_fix()
  115. if sys.platform.startswith("linux"):
  116. host_subpath = "linux-x86_64"
  117. elif sys.platform.startswith("darwin"):
  118. host_subpath = "darwin-x86_64"
  119. elif sys.platform.startswith("win"):
  120. if platform.machine().endswith("64"):
  121. host_subpath = "windows-x86_64"
  122. else:
  123. host_subpath = "windows"
  124. toolchain_path = ndk_root + "/toolchains/llvm/prebuilt/" + host_subpath
  125. compiler_path = toolchain_path + "/bin"
  126. env["CC"] = compiler_path + "/clang"
  127. env["CXX"] = compiler_path + "/clang++"
  128. env["AR"] = compiler_path + "/llvm-ar"
  129. env["RANLIB"] = compiler_path + "/llvm-ranlib"
  130. env["AS"] = compiler_path + "/clang"
  131. # Disable exceptions on template builds
  132. if not env.editor_build:
  133. env.Append(CXXFLAGS=["-fno-exceptions"])
  134. env.Append(
  135. CCFLAGS=(
  136. "-fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fvisibility=hidden -fno-strict-aliasing".split()
  137. )
  138. )
  139. if get_min_sdk_version(env["ndk_platform"]) >= 24:
  140. env.Append(CPPDEFINES=[("_FILE_OFFSET_BITS", 64)])
  141. if env["arch"] == "x86_32":
  142. # The NDK adds this if targeting API < 24, so we can drop it when Godot targets it at least
  143. env.Append(CCFLAGS=["-mstackrealign"])
  144. elif env["arch"] == "arm32":
  145. env.Append(CCFLAGS="-march=armv7-a -mfloat-abi=softfp".split())
  146. env.Append(CPPDEFINES=["__ARM_ARCH_7__", "__ARM_ARCH_7A__"])
  147. env.Append(CPPDEFINES=["__ARM_NEON__"])
  148. elif env["arch"] == "arm64":
  149. env.Append(CCFLAGS=["-mfix-cortex-a53-835769"])
  150. env.Append(CPPDEFINES=["__ARM_ARCH_8A__"])
  151. # Link flags
  152. env.Append(LINKFLAGS="-Wl,--gc-sections -Wl,--no-undefined -Wl,-z,now".split())
  153. env.Append(LINKFLAGS="-Wl,-soname,libgodot_android.so")
  154. env.Prepend(CPPPATH=["#platform/android"])
  155. env.Append(CPPDEFINES=["ANDROID_ENABLED", "UNIX_ENABLED"])
  156. env.Append(LIBS=["OpenSLES", "EGL", "android", "log", "z", "dl"])
  157. if env["vulkan"]:
  158. env.Append(CPPDEFINES=["VULKAN_ENABLED"])
  159. if not env["use_volk"]:
  160. env.Append(LIBS=["vulkan"])
  161. if env["opengl3"]:
  162. env.Append(CPPDEFINES=["GLES3_ENABLED"])
  163. env.Append(LIBS=["GLESv3"])