diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2018-11-12 16:32:56 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2018-11-15 19:07:28 -0800 |
commit | 842d8556ecc873abf3c580b725bb8d1fe5230246 (patch) | |
tree | f2998d02fd18bb89a50c5f8e54cf98323c95d992 /mesonbuild/compilers/c.py | |
parent | 64107f5fe1c5a27762d7ff6ff770c0298c40e3b8 (diff) | |
download | meson-842d8556ecc873abf3c580b725bb8d1fe5230246.zip meson-842d8556ecc873abf3c580b725bb8d1fe5230246.tar.gz meson-842d8556ecc873abf3c580b725bb8d1fe5230246.tar.bz2 |
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.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/c.py b/mesonbuild/compilers/c.py index 9a2d7db..4a79ca0 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']} |