summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-09-27 11:42:39 +0200
committerGitHub <noreply@github.com>2021-09-27 11:42:39 +0200
commit228014bec85c5b7a96521d91d3ffda35fb23be23 (patch)
tree92686509e30d022ca126738843fd0d9886122ba3 /SConstruct
parent3de367920fa30d3f1214c0b23bb6e71e56121d67 (diff)
parentf579039a0aa0755f3d67fe64ead672a4edfcbac4 (diff)
downloadredot-cpp-228014bec85c5b7a96521d91d3ffda35fb23be23.tar.gz
Merge pull request #547 from piiertho/hotfix/add-android-missing-toolchain-elements
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct8
1 files changed, 6 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index 77c7001..6950217 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):
@@ -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':