summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2022-11-02 16:44:17 +0100
committerFabio Alessandrelli <fabio.alessandrelli@gmail.com>2022-11-02 16:45:38 +0100
commit35ec1403dca6f56d226e1f8077deed0c93de959c (patch)
treefadfdee75441b6c9870718010b00e33d3199a8df /tools
parentadf4802f4bd7fb7cafc1e94882df3f105d7f7afd (diff)
downloadredot-cpp-35ec1403dca6f56d226e1f8077deed0c93de959c.tar.gz
[SCons] Remove bogus CCFLAGS from windows toolchain.
The c++ standard is added as part of the main SConstruct
Diffstat (limited to 'tools')
-rw-r--r--tools/windows.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/windows.py b/tools/windows.py
index c4cbf79..2983f50 100644
--- a/tools/windows.py
+++ b/tools/windows.py
@@ -39,8 +39,6 @@ def generate(env):
elif sys.platform == "win32" or sys.platform == "msys":
env["use_mingw"] = True
mingw.generate(env)
- # Still need to use C++17.
- env.Append(CCFLAGS=["-std=c++17"])
# Don't want lib prefixes
env["IMPLIBPREFIX"] = ""
env["SHLIBPREFIX"] = ""