mirror of
https://github.com/alliedmodders/metamod-source.git
synced 2025-12-07 02:18:30 +00:00
Sync compiler warning flags from master.
This commit is contained in:
parent
a70fd23af3
commit
ff9eac39b0
@ -137,11 +137,19 @@ class MMSConfig(object):
|
|||||||
'-Wno-non-virtual-dtor',
|
'-Wno-non-virtual-dtor',
|
||||||
'-Wno-overloaded-virtual',
|
'-Wno-overloaded-virtual',
|
||||||
]
|
]
|
||||||
if (cxx.name == 'gcc' and cxx.majorVersion >= 4 and cxx.minorVersion >= 7) or \
|
if (cxx.name == 'gcc' and cfg.version >= 'gcc-4.7') or \
|
||||||
(cxx.name == 'clang' and cxx.majorVersion >= 3):
|
(cxx.name == 'clang' and cxx.majorVersion >= 3):
|
||||||
cfg.cxxflags += ['-Wno-delete-non-virtual-dtor']
|
cfg.cxxflags += ['-Wno-delete-non-virtual-dtor']
|
||||||
if cxx.name == 'gcc':
|
if cxx.name == 'gcc':
|
||||||
cfg.cflags += ['-mfpmath=sse']
|
cfg.cflags += ['-mfpmath=sse']
|
||||||
|
if cxx.name == 'clang':
|
||||||
|
if cfg.version >= 'clang-3.6':
|
||||||
|
cfg.cxxflags += ['-Wno-inconsistent-missing-override']
|
||||||
|
cfg.cxxflags += ['-Wno-implicit-exception-spec-mismatch']
|
||||||
|
if cfg.version >= 'apple-clang-5.1' or cfg.version >= 'clang-3.4':
|
||||||
|
cfg.cxxflags += ['-Wno-deprecated-register']
|
||||||
|
else:
|
||||||
|
cfg.cxxflags += ['-Wno-deprecated']
|
||||||
|
|
||||||
elif cxx.name == 'msvc':
|
elif cxx.name == 'msvc':
|
||||||
if builder.options.debug == '1':
|
if builder.options.debug == '1':
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user