Add -Wno-unused-command-line-argument when running the test suite to prevent errors

llvm-svn: 272809
This commit is contained in:
Eric Fiselier 2016-06-15 17:25:05 +00:00
parent a67fea464c
commit 4e7ab67c0b
1 changed files with 1 additions and 0 deletions

View File

@ -538,6 +538,7 @@ class Configuration(object):
'-D_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER',
'-Wall', '-Wextra', '-Werror'
]
self.cxx.addWarningFlagIfSupported('-Wno-unused-command-line-argument')
self.cxx.addWarningFlagIfSupported('-Wno-attributes')
self.cxx.addWarningFlagIfSupported('-Wno-pessimizing-move')
self.cxx.addWarningFlagIfSupported('-Wno-c++11-extensions')