summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Tanous <edtanous@google.com>2022-05-25 20:42:15 +0300
committerEd Tanous <ed@tanous.net>2022-05-27 20:35:17 +0300
commit30f11eb44c906c59401a3532e1d4094318e00e02 (patch)
tree536a98ae58c2ee40164d8fa65e479ea71e956bf5
parent918ef25bf3f32253bd143dca1140d5e603c31bbb (diff)
downloadbmcweb-30f11eb44c906c59401a3532e1d4094318e00e02.tar.xz
Enable -Wno-psabi for bmcweb builds
This gcc warning is just a warning, and not a problem in bmc usages as we don't rely on abi. Having it in clogs the gcc logs when triaging other things. Tested: Compiled with another compiler error present. Didn't see "This behavior changed in gcc 7.1" warnings. Signed-off-by: Ed Tanous <edtanous@google.com> Change-Id: I2bd1ec8a774fdce15557d6344a03f4321df6d95a
-rw-r--r--meson.build1
1 files changed, 1 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 054b35fae0..33daf540fe 100644
--- a/meson.build
+++ b/meson.build
@@ -165,6 +165,7 @@ if (cxx.get_id() == 'gcc' and cxx.version().version_compare('>8.0'))
'-Wunused-parameter',
'-Wnull-dereference',
'-Wdouble-promotion',
+ '-Wno-psabi',
]),
language:'cpp')
endif