[SCons] Remove bogus CCFLAGS from windows toolchain.

The c++ standard is added as part of the main SConstruct
pull/908/head
Fabio Alessandrelli 2022-11-02 16:44:17 +01:00
parent adf4802f4b
commit 35ec1403dc
1 changed files with 0 additions and 2 deletions

View File

@ -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"] = ""