Browse Source

[SCons] Remove bogus CCFLAGS from windows toolchain.

The c++ standard is added as part of the main SConstruct
Fabio Alessandrelli 2 năm trước cách đây
mục cha
commit
35ec1403dc
1 tập tin đã thay đổi với 0 bổ sung2 xóa
  1. 0 2
      tools/windows.py

+ 0 - 2
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"] = ""