summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2022-09-19 15:11:05 +0200
committerGitHub <noreply@github.com>2022-09-19 15:11:05 +0200
commitbef1fa091c5f801dbd1abcb750b9f5c55c7c3822 (patch)
tree5ff974eef998ea747dbdc0331188ab2ce282af3f /SConstruct
parent0b87aaa74c5d8b27852e61c1d26699055f87c964 (diff)
parent2bf983e6382f5236948f7740faf130a3568f9dd0 (diff)
downloadredot-cpp-bef1fa091c5f801dbd1abcb750b9f5c55c7c3822.tar.gz
Merge pull request #835 from Faless/build/4.x_opt_debug
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct5
1 files changed, 5 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 34d07be..442c73c 100644
--- a/SConstruct
+++ b/SConstruct
@@ -102,6 +102,10 @@ architecture_aliases = {
}
opts.Add(EnumVariable("arch", "CPU architecture", "", architecture_array, architecture_aliases))
+# Targets flags tool (optimizations, debug symbols)
+target_tool = Tool("targets", toolpath=["tools"])
+target_tool.options(opts)
+
opts.Update(env)
Help(opts.GenerateHelpText(env))
@@ -135,6 +139,7 @@ if tool is None or not tool.exists(env):
raise ValueError("Required toolchain not found for platform " + env["platform"])
tool.generate(env)
+target_tool.generate(env)
# Detect and print a warning listing unknown SCons variables to ease troubleshooting.
unknown = opts.UnknownVariables()