30/01/2020 17:00, David Marchand: > Enabling them requires a configuration that will trigger the ABI dumps > generation as part of the existing devtools/test-build.sh and > devtools/test-meson-builds.sh scripts. [...] > --- a/devtools/test-meson-builds.sh > +++ b/devtools/test-meson-builds.sh > if [ -f "$builddir/build.ninja" ] ; then > + # for existing environments, force debugoptimized so that ABI > + # checks can run > + $MESON configure --buildtype=debugoptimized $builddir
This is forcing meson to re-run each time, even if the buildtype is already "debugoptimized". Please query meson configuration to avoid useless re-run: $MESON configure $builddir | awk '$1=="buildtype" {print $2}'