summaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/c.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2018-11-12 16:32:56 -0800
committerDylan Baker <dylan@pnwbakers.com>2018-11-15 19:07:28 -0800
commit842d8556ecc873abf3c580b725bb8d1fe5230246 (patch)
treef2998d02fd18bb89a50c5f8e54cf98323c95d992 /mesonbuild/compilers/c.py
parent64107f5fe1c5a27762d7ff6ff770c0298c40e3b8 (diff)
downloadmeson-842d8556ecc873abf3c580b725bb8d1fe5230246.tar.gz
compilers: quiet ICC messages about pch
These are useful for debugging, but not interesting for end users, where it just adds lines between ninja jobs without adding value.
Diffstat (limited to 'mesonbuild/compilers/c.py')
-rw-r--r--mesonbuild/compilers/c.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/c.py b/mesonbuild/compilers/c.py
index 9a2d7dbc6..4a79ca0c5 100644
--- a/mesonbuild/compilers/c.py
+++ b/mesonbuild/compilers/c.py
@@ -1245,7 +1245,7 @@ class IntelCCompiler(IntelCompiler, CCompiler):
CCompiler.__init__(self, exelist, version, is_cross, exe_wrapper, **kwargs)
IntelCompiler.__init__(self, compiler_type)
self.lang_header = 'c-header'
- default_warn_args = ['-Wall', '-w3', '-diag-disable:remark', '-Wpch-messages']
+ default_warn_args = ['-Wall', '-w3', '-diag-disable:remark']
self.warn_args = {'1': default_warn_args,
'2': default_warn_args + ['-Wextra'],
'3': default_warn_args + ['-Wextra']}