summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbuild/ymake_conf.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/build/ymake_conf.py b/build/ymake_conf.py
index b85cd385982..a26aecbda69 100755
--- a/build/ymake_conf.py
+++ b/build/ymake_conf.py
@@ -2448,9 +2448,6 @@ class MSVCCompiler(MSVC, Compiler):
flags += [
# Allow <windows.h> to be included via <Windows.h> in case-sensitive file-systems.
'-fcase-insensitive-paths',
- # Enable standard-conforming behavior and generate duplicate symbol error in case of duplicated global constants.
- # See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85678#c0
- '-fno-common',
]
if target.is_x86:
flags.append('-m32')
@@ -2467,7 +2464,6 @@ class MSVCCompiler(MSVC, Compiler):
'-Wno-macro-redefined',
'-Wno-parentheses',
'-Wno-pragma-pack',
- '-Wno-unknown-argument',
'-Wno-unknown-warning-option',
))