소스 검색

[SCons] Remove bogus CCFLAGS from windows toolchain.

The c++ standard is added as part of the main SConstruct
Fabio Alessandrelli 2 년 전
부모
커밋
35ec1403dc
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  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"] = ""