summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2022-12-20 15:22:29 +0100
committerFabio Alessandrelli <fabio.alessandrelli@gmail.com>2022-12-20 17:41:34 +0100
commit8d6982be3be3c4bc0220474a758050bfab9b2ae9 (patch)
tree2f041116cdb783a57449f4dcd9e872c75eff58e6 /SConstruct
parent104997e83e304d99e29cccbd2ba26867b18dd190 (diff)
downloadredot-cpp-8d6982be3be3c4bc0220474a758050bfab9b2ae9.tar.gz
[SCons] Platform agnostic default toolchain (GNU).
Create the SCons Environment with an empty PLATFORM variable to force the default tools to use the GNU toolchain. Platform specific toolchains are then setup in our custom tools.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 3 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 09a963f..e25dd95 100644
--- a/SConstruct
+++ b/SConstruct
@@ -28,7 +28,9 @@ elif ARGUMENTS.get("platform", ""):
else:
raise ValueError("Could not detect platform automatically, please specify with platform=<platform>")
-env = Environment(tools=["default"])
+# Default tools with no platform defaults to gnu toolchain.
+# We apply platform specific toolchains via our custom tools.
+env = Environment(tools=["default"], PLATFORM="")
# Default num_jobs to local cpu count if not user specified.
# SCons has a peculiarity where user-specified options won't be overridden