diff options
author | Pierre-Thomas Meisels <meisels27@yahoo.fr> | 2021-04-25 21:24:38 +0200 |
---|---|---|
committer | Pierre-Thomas Meisels <meisels27@yahoo.fr> | 2021-04-25 21:24:38 +0200 |
commit | f579039a0aa0755f3d67fe64ead672a4edfcbac4 (patch) | |
tree | 317522a3ceb957de486a532fdc8606cd7b3fb0b9 /SConstruct | |
parent | d7c55b1ab2606253e94db5ed3caf75f90a47d03c (diff) | |
download | redot-cpp-f579039a0aa0755f3d67fe64ead672a4edfcbac4.tar.gz |
Fix: add missing toolchain elements for android
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -14,7 +14,7 @@ else: # Workaround for MinGW. See: # http://www.scons.org/wiki/LongCmdLinesOnWin32 -if (os.name=="nt"): +if os.name == "nt": import subprocess def mySubProcess(cmdline,env): @@ -371,8 +371,12 @@ elif env['platform'] == 'android': env['CC'] = toolchain + "/bin/clang" env['CXX'] = toolchain + "/bin/clang++" env['AR'] = toolchain + "/bin/" + arch_info['tool_path'] + "-ar" + env["AS"] = toolchain + "/bin/" + arch_info['tool_path'] + "-as" + env["LD"] = toolchain + "/bin/" + arch_info['tool_path'] + "-ld" + env["STRIP"] = toolchain + "/bin/" + arch_info['tool_path'] + "-strip" + env["RANLIB"] = toolchain + "/bin/" + arch_info['tool_path'] + "-ranlib" - env.Append(CCFLAGS=['--target=' + arch_info['target'] + env['android_api_level'], '-march=' + arch_info['march'], '-fPIC'])#, '-fPIE', '-fno-addrsig', '-Oz']) + env.Append(CCFLAGS=['--target=' + arch_info['target'] + env['android_api_level'], '-march=' + arch_info['march'], '-fPIC']) env.Append(CCFLAGS=arch_info['ccflags']) elif env["platform"] == "javascript": |