detect.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. import os
  2. import sys
  3. import platform
  4. from distutils.version import LooseVersion
  5. def is_active():
  6. return True
  7. def get_name():
  8. return "Android"
  9. def can_build():
  10. return ("ANDROID_NDK_ROOT" in os.environ)
  11. def get_platform(platform):
  12. return int(platform.split("-")[1])
  13. def get_opts():
  14. from SCons.Variables import BoolVariable, EnumVariable
  15. return [
  16. ('ANDROID_NDK_ROOT', 'Path to the Android NDK', os.environ.get("ANDROID_NDK_ROOT", 0)),
  17. ('ndk_platform', 'Target platform (android-<api>, e.g. "android-18")', "android-18"),
  18. EnumVariable('android_arch', 'Target architecture', "armv7", ('armv7', 'armv6', 'arm64v8', 'x86', 'x86_64')),
  19. BoolVariable('android_neon', 'Enable NEON support (armv7 only)', True),
  20. ]
  21. def get_flags():
  22. return [
  23. ('tools', False),
  24. ]
  25. def create(env):
  26. tools = env['TOOLS']
  27. if "mingw" in tools:
  28. tools.remove('mingw')
  29. if "applelink" in tools:
  30. tools.remove("applelink")
  31. env.Tool('gcc')
  32. return env.Clone(tools=tools)
  33. def configure(env):
  34. # Workaround for MinGW. See:
  35. # http://www.scons.org/wiki/LongCmdLinesOnWin32
  36. if (os.name == "nt"):
  37. import subprocess
  38. def mySubProcess(cmdline, env):
  39. # print("SPAWNED : " + cmdline)
  40. startupinfo = subprocess.STARTUPINFO()
  41. startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
  42. proc = subprocess.Popen(cmdline, stdin=subprocess.PIPE, stdout=subprocess.PIPE,
  43. stderr=subprocess.PIPE, startupinfo=startupinfo, shell=False, env=env)
  44. data, err = proc.communicate()
  45. rv = proc.wait()
  46. if rv:
  47. print("=====")
  48. print(err)
  49. print("=====")
  50. return rv
  51. def mySpawn(sh, escape, cmd, args, env):
  52. newargs = ' '.join(args[1:])
  53. cmdline = cmd + " " + newargs
  54. rv = 0
  55. if len(cmdline) > 32000 and cmd.endswith("ar"):
  56. cmdline = cmd + " " + args[1] + " " + args[2] + " "
  57. for i in range(3, len(args)):
  58. rv = mySubProcess(cmdline + args[i], env)
  59. if rv:
  60. break
  61. else:
  62. rv = mySubProcess(cmdline, env)
  63. return rv
  64. env['SPAWN'] = mySpawn
  65. ## Architecture
  66. if env['android_arch'] not in ['armv7', 'armv6', 'arm64v8', 'x86', 'x86_64']:
  67. env['android_arch'] = 'armv7'
  68. neon_text = ""
  69. if env["android_arch"] == "armv7" and env['android_neon']:
  70. neon_text = " (with NEON)"
  71. print("Building for Android (" + env['android_arch'] + ")" + neon_text)
  72. can_vectorize = True
  73. if env['android_arch'] == 'x86':
  74. env['ARCH'] = 'arch-x86'
  75. env.extra_suffix = ".x86" + env.extra_suffix
  76. target_subpath = "x86-4.9"
  77. abi_subpath = "i686-linux-android"
  78. arch_subpath = "x86"
  79. env["x86_libtheora_opt_gcc"] = True
  80. if env['android_arch'] == 'x86_64':
  81. if get_platform(env["ndk_platform"]) < 21:
  82. print("WARNING: android_arch=x86_64 is not supported by ndk_platform lower than android-21; setting ndk_platform=android-21")
  83. env["ndk_platform"] = "android-21"
  84. env['ARCH'] = 'arch-x86_64'
  85. env.extra_suffix = ".x86_64" + env.extra_suffix
  86. target_subpath = "x86_64-4.9"
  87. abi_subpath = "x86_64-linux-android"
  88. arch_subpath = "x86_64"
  89. env["x86_libtheora_opt_gcc"] = True
  90. elif env['android_arch'] == 'armv6':
  91. env['ARCH'] = 'arch-arm'
  92. env.extra_suffix = ".armv6" + env.extra_suffix
  93. target_subpath = "arm-linux-androideabi-4.9"
  94. abi_subpath = "arm-linux-androideabi"
  95. arch_subpath = "armeabi"
  96. can_vectorize = False
  97. elif env["android_arch"] == "armv7":
  98. env['ARCH'] = 'arch-arm'
  99. target_subpath = "arm-linux-androideabi-4.9"
  100. abi_subpath = "arm-linux-androideabi"
  101. arch_subpath = "armeabi-v7a"
  102. if env['android_neon']:
  103. env.extra_suffix = ".armv7.neon" + env.extra_suffix
  104. else:
  105. env.extra_suffix = ".armv7" + env.extra_suffix
  106. elif env["android_arch"] == "arm64v8":
  107. if get_platform(env["ndk_platform"]) < 21:
  108. print("WARNING: android_arch=arm64v8 is not supported by ndk_platform lower than android-21; setting ndk_platform=android-21")
  109. env["ndk_platform"] = "android-21"
  110. env['ARCH'] = 'arch-arm64'
  111. target_subpath = "aarch64-linux-android-4.9"
  112. abi_subpath = "aarch64-linux-android"
  113. arch_subpath = "arm64-v8a"
  114. env.extra_suffix = ".armv8" + env.extra_suffix
  115. ## Build type
  116. if (env["target"].startswith("release")):
  117. if (env["optimize"] == "speed"): #optimize for speed (default)
  118. env.Append(LINKFLAGS=['-O2'])
  119. env.Append(CPPFLAGS=['-O2', '-DNDEBUG', '-fomit-frame-pointer'])
  120. else: #optimize for size
  121. env.Append(CPPFLAGS=['-Os', '-DNDEBUG'])
  122. env.Append(LINKFLAGS=['-Os'])
  123. if (can_vectorize):
  124. env.Append(CPPFLAGS=['-ftree-vectorize'])
  125. if (env["target"] == "release_debug"):
  126. env.Append(CPPFLAGS=['-DDEBUG_ENABLED'])
  127. elif (env["target"] == "debug"):
  128. env.Append(LINKFLAGS=['-O0'])
  129. env.Append(CPPFLAGS=['-O0', '-D_DEBUG', '-UNDEBUG', '-DDEBUG_ENABLED',
  130. '-DDEBUG_MEMORY_ENABLED', '-g', '-fno-limit-debug-info'])
  131. ## Compiler configuration
  132. env['SHLIBSUFFIX'] = '.so'
  133. if env['PLATFORM'] == 'win32':
  134. env.Tool('gcc')
  135. env.use_windows_spawn_fix()
  136. mt_link = True
  137. if (sys.platform.startswith("linux")):
  138. host_subpath = "linux-x86_64"
  139. elif (sys.platform.startswith("darwin")):
  140. host_subpath = "darwin-x86_64"
  141. elif (sys.platform.startswith('win')):
  142. if (platform.machine().endswith('64')):
  143. host_subpath = "windows-x86_64"
  144. else:
  145. mt_link = False
  146. host_subpath = "windows"
  147. if env["android_arch"] == "arm64v8":
  148. mt_link = False
  149. compiler_path = env["ANDROID_NDK_ROOT"] + "/toolchains/llvm/prebuilt/" + host_subpath + "/bin"
  150. gcc_toolchain_path = env["ANDROID_NDK_ROOT"] + "/toolchains/" + target_subpath + "/prebuilt/" + host_subpath
  151. tools_path = gcc_toolchain_path + "/" + abi_subpath + "/bin"
  152. # For Clang to find NDK tools in preference of those system-wide
  153. env.PrependENVPath('PATH', tools_path)
  154. ccache_path = os.environ.get("CCACHE")
  155. if ccache_path is None:
  156. env['CC'] = compiler_path + '/clang'
  157. env['CXX'] = compiler_path + '/clang++'
  158. else:
  159. # there aren't any ccache wrappers available for Android,
  160. # to enable caching we need to prepend the path to the ccache binary
  161. env['CC'] = ccache_path + ' ' + compiler_path + '/clang'
  162. env['CXX'] = ccache_path + ' ' + compiler_path + '/clang++'
  163. env['AR'] = tools_path + "/ar"
  164. env['RANLIB'] = tools_path + "/ranlib"
  165. env['AS'] = tools_path + "/as"
  166. common_opts = ['-fno-integrated-as', '-gcc-toolchain', gcc_toolchain_path]
  167. lib_sysroot = env["ANDROID_NDK_ROOT"] + "/platforms/" + env['ndk_platform'] + "/" + env['ARCH']
  168. ## Compile flags
  169. env.Append(CPPFLAGS=["-isystem", env["ANDROID_NDK_ROOT"] + "/sources/cxx-stl/llvm-libc++/include"])
  170. env.Append(CPPFLAGS=["-isystem", env["ANDROID_NDK_ROOT"] + "/sources/cxx-stl/llvm-libc++abi/include"])
  171. env.Append(CXXFLAGS=["-std=gnu++14"])
  172. # Disable exceptions and rtti on non-tools (template) builds
  173. if env['tools']:
  174. env.Append(CXXFLAGS=['-frtti'])
  175. else:
  176. env.Append(CXXFLAGS=['-fno-rtti', '-fno-exceptions'])
  177. # Don't use dynamic_cast, necessary with no-rtti.
  178. env.Append(CPPFLAGS=['-DNO_SAFE_CAST'])
  179. ndk_version = get_ndk_version(env["ANDROID_NDK_ROOT"])
  180. if ndk_version != None and LooseVersion(ndk_version) >= LooseVersion("15.0.4075724"):
  181. print("Using NDK unified headers")
  182. sysroot = env["ANDROID_NDK_ROOT"] + "/sysroot"
  183. env.Append(CPPFLAGS=["--sysroot="+sysroot])
  184. env.Append(CPPFLAGS=["-isystem", sysroot + "/usr/include/" + abi_subpath])
  185. env.Append(CPPFLAGS=["-isystem", env["ANDROID_NDK_ROOT"] + "/sources/android/support/include"])
  186. # For unified headers this define has to be set manually
  187. env.Append(CPPFLAGS=["-D__ANDROID_API__=" + str(get_platform(env['ndk_platform']))])
  188. else:
  189. print("Using NDK deprecated headers")
  190. env.Append(CPPFLAGS=["-isystem", lib_sysroot + "/usr/include"])
  191. env.Append(CPPFLAGS='-fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fvisibility=hidden -fno-strict-aliasing'.split())
  192. env.Append(CPPFLAGS='-DNO_STATVFS -DGLES_ENABLED'.split())
  193. env['neon_enabled'] = False
  194. if env['android_arch'] == 'x86':
  195. target_opts = ['-target', 'i686-none-linux-android']
  196. # The NDK adds this if targeting API < 21, so we can drop it when Godot targets it at least
  197. env.Append(CPPFLAGS=['-mstackrealign'])
  198. elif env['android_arch'] == 'x86_64':
  199. target_opts = ['-target', 'x86_64-none-linux-android']
  200. elif env["android_arch"] == "armv6":
  201. target_opts = ['-target', 'armv6-none-linux-androideabi']
  202. env.Append(CPPFLAGS='-D__ARM_ARCH_6__ -march=armv6 -mfpu=vfp -mfloat-abi=softfp'.split())
  203. elif env["android_arch"] == "armv7":
  204. target_opts = ['-target', 'armv7-none-linux-androideabi']
  205. env.Append(CPPFLAGS='-D__ARM_ARCH_7__ -D__ARM_ARCH_7A__ -march=armv7-a -mfloat-abi=softfp'.split())
  206. if env['android_neon']:
  207. env['neon_enabled'] = True
  208. env.Append(CPPFLAGS=['-mfpu=neon', '-D__ARM_NEON__'])
  209. else:
  210. env.Append(CPPFLAGS=['-mfpu=vfpv3-d16'])
  211. elif env["android_arch"] == "arm64v8":
  212. target_opts = ['-target', 'aarch64-none-linux-android']
  213. env.Append(CPPFLAGS=['-D__ARM_ARCH_8A__'])
  214. env.Append(CPPFLAGS=['-mfix-cortex-a53-835769'])
  215. env.Append(CPPFLAGS=target_opts)
  216. env.Append(CPPFLAGS=common_opts)
  217. ## Link flags
  218. if ndk_version != None and LooseVersion(ndk_version) >= LooseVersion("15.0.4075724"):
  219. if LooseVersion(ndk_version) >= LooseVersion("17.1.4828580"):
  220. env.Append(LINKFLAGS=['-Wl,--exclude-libs,libgcc.a','-Wl,--exclude-libs,libatomic.a','-nostdlib++'])
  221. else:
  222. env.Append(LINKFLAGS=[env["ANDROID_NDK_ROOT"] +"/sources/cxx-stl/llvm-libc++/libs/"+arch_subpath+"/libandroid_support.a"])
  223. env.Append(LINKFLAGS=['-shared', '--sysroot=' + lib_sysroot, '-Wl,--warn-shared-textrel'])
  224. env.Append(LIBPATH=[env["ANDROID_NDK_ROOT"] + "/sources/cxx-stl/llvm-libc++/libs/"+arch_subpath+"/"])
  225. env.Append(LINKFLAGS=[env["ANDROID_NDK_ROOT"] +"/sources/cxx-stl/llvm-libc++/libs/"+arch_subpath+"/libc++_shared.so"])
  226. else:
  227. env.Append(LINKFLAGS=['-shared', '--sysroot=' + lib_sysroot, '-Wl,--warn-shared-textrel'])
  228. if mt_link:
  229. env.Append(LINKFLAGS=['-Wl,--threads'])
  230. if env["android_arch"] == "armv7":
  231. env.Append(LINKFLAGS='-Wl,--fix-cortex-a8'.split())
  232. env.Append(LINKFLAGS='-Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now'.split())
  233. env.Append(LINKFLAGS='-Wl,-soname,libgodot_android.so -Wl,--gc-sections'.split())
  234. env.Append(LINKFLAGS=target_opts)
  235. env.Append(LINKFLAGS=common_opts)
  236. env.Append(LIBPATH=[env["ANDROID_NDK_ROOT"] + '/toolchains/' + target_subpath + '/prebuilt/' +
  237. host_subpath + '/lib/gcc/' + abi_subpath + '/4.9.x'])
  238. env.Append(LIBPATH=[env["ANDROID_NDK_ROOT"] +
  239. '/toolchains/' + target_subpath + '/prebuilt/' + host_subpath + '/' + abi_subpath + '/lib'])
  240. env.Append(CPPPATH=['#platform/android'])
  241. env.Append(CPPFLAGS=['-DANDROID_ENABLED', '-DUNIX_ENABLED', '-DNO_FCNTL'])
  242. env.Append(LIBS=['OpenSLES', 'EGL', 'GLESv3', 'android', 'log', 'z', 'dl'])
  243. # Return NDK version string in source.properties (adapted from the Chromium project).
  244. def get_ndk_version(path):
  245. if path is None:
  246. return None
  247. prop_file_path = os.path.join(path, "source.properties")
  248. try:
  249. with open(prop_file_path) as prop_file:
  250. for line in prop_file:
  251. key_value = list(map(lambda x: x.strip(), line.split("=")))
  252. if key_value[0] == "Pkg.Revision":
  253. return key_value[1]
  254. except:
  255. print("Could not read source prop file '%s'" % prop_file_path)
  256. return None