summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorPierre-Thomas Meisels <meisels27@yahoo.fr>2021-04-25 21:24:38 +0200
committerPierre-Thomas Meisels <meisels27@yahoo.fr>2021-04-25 21:24:38 +0200
commitf579039a0aa0755f3d67fe64ead672a4edfcbac4 (patch)
tree317522a3ceb957de486a532fdc8606cd7b3fb0b9 /SConstruct
parentd7c55b1ab2606253e94db5ed3caf75f90a47d03c (diff)
downloadredot-cpp-f579039a0aa0755f3d67fe64ead672a4edfcbac4.tar.gz
Fix: add missing toolchain elements for android
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct8
1 files changed, 6 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index cfb2e95..3a23189 100644
--- a/SConstruct
+++ b/SConstruct
@@ -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":