diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2018-10-10 13:36:23 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2018-11-15 18:42:25 -0800 |
commit | a480de1cb55c9efa88a9a520d0d776743b4e5664 (patch) | |
tree | dcb9281df0e54dd5e902d962b25407469243930f /mesonbuild/compilers/compilers.py | |
parent | 315d07d3062718b270ee90f0970d66715716fdb6 (diff) | |
download | meson-a480de1cb55c9efa88a9a520d0d776743b4e5664.zip meson-a480de1cb55c9efa88a9a520d0d776743b4e5664.tar.gz meson-a480de1cb55c9efa88a9a520d0d776743b4e5664.tar.bz2 |
compilers: ICC should error when an unknown __attribute__ is tested
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
-rw-r--r-- | mesonbuild/compilers/compilers.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index 755bd46..3d53f27 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -1789,6 +1789,7 @@ class IntelCompiler(GnuLikeCompiler): extra_args, '-diag-error', '10006', # ignoring unknown option '-diag-error', '10148', # Option not supported + '-diag-error', '1292', # unknown __attribute__ ] return super().compiles(*args, **kwargs) |