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
diff --git a/meson.build b/meson.build
index 054b35f..33daf54 100644
--- a/meson.build
+++ b/meson.build
@@ -165,6 +165,7 @@
'-Wunused-parameter',
'-Wnull-dereference',
'-Wdouble-promotion',
+ '-Wno-psabi',
]),
language:'cpp')
endif