1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-03-30 16:35:50 +02:00

Probably fix build on Clang.

This commit is contained in:
Nicholas Hastings 2015-04-16 10:11:42 -07:00
parent 59352d24de
commit aa11fe53ea

View File

@ -147,6 +147,8 @@ class MMSConfig(object):
cfg.cxxflags += ['-Wno-delete-non-virtual-dtor']
if cxx.name == 'gcc':
cfg.cflags += ['-mfpmath=sse']
if cxx.name == 'clang':
cfg.cxxflags += ['-Wno-implicit-exception-spec-mismatch']
elif cxx.name == 'msvc':
if builder.options.debug == '1':