On Sat, Mar 16, 2019 at 05:37:34PM +0100, Tom de Vries wrote: > On 16-03-19 17:31, Mark Wielaard wrote: > > The following seems to always suppress the WARNING: > > > > diff --git a/Makefile b/Makefile > > index 1aa208f..2a9898c 100644 > > --- a/Makefile > > +++ b/Makefile > > @@ -26,9 +26,14 @@ hello: > > dw2-restrict: > > $(CC) $(TEST_SRC)/dw2-restrict.S -o $@ || touch $@ > > > > +# On some systems we need to set and export DEJAGNU to suppress > > +# WARNING: Couldn't find the global config file. > > +DEJAGNU ?= /dev/null > > + > > check: dwz $(TEST_EXECS) > > mkdir -p testsuite-bin > > cd testsuite-bin; ln -sf $(PWD)/dwz . > > + export DEJAGNU=$(DEJAGNU); \ > > export PATH=$(PWD)/testsuite-bin:$$PATH; export LC_ALL=C; \ > > runtest --tool=dwz -srcdir testsuite $(RUNTESTFLAGS) > > rm -Rf testsuite-bin $(TEST_EXECS) > > > > Does that make sense? > > Works for me. Great. Pushed as attached. On all buildbot workers make check is warning free. On some there are some warnings about hashtab.c (implicit-fallthrough). If that file comes from libiberty maybe we can simply remerge it? Cheers, Mark