diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-09-27 11:42:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-27 11:42:39 +0200 |
commit | 228014bec85c5b7a96521d91d3ffda35fb23be23 (patch) | |
tree | 92686509e30d022ca126738843fd0d9886122ba3 /SConstruct | |
parent | 3de367920fa30d3f1214c0b23bb6e71e56121d67 (diff) | |
parent | f579039a0aa0755f3d67fe64ead672a4edfcbac4 (diff) | |
download | redot-cpp-228014bec85c5b7a96521d91d3ffda35fb23be23.tar.gz |
Merge pull request #547 from piiertho/hotfix/add-android-missing-toolchain-elements
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): @@ -387,8 +387,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']) if env['target'] == 'debug': |