From 35ec1403dca6f56d226e1f8077deed0c93de959c Mon Sep 17 00:00:00 2001 From: Fabio Alessandrelli Date: Wed, 2 Nov 2022 16:44:17 +0100 Subject: [PATCH] [SCons] Remove bogus CCFLAGS from windows toolchain. The c++ standard is added as part of the main SConstruct --- tools/windows.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/windows.py b/tools/windows.py index c4cbf798..2983f501 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"] = ""