From 194fa9a173153e4ca8a4b7df082bd1354f2ffaa0 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Wed, 12 Oct 2016 15:09:06 +0200 Subject: [PATCH] In gcc/Makefile.in, factor out SELFTEST_FLAGS gcc/ * Makefile.in (SELFTEST_FLAGS): New variable. (s-selftest, selftest-gdb, selftest-valgrind): Use it. From-SVN: r241043 --- gcc/ChangeLog | 3 +++ gcc/Makefile.in | 11 ++++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e57438e..003316f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2016-10-12 Thomas Schwinge + * Makefile.in (SELFTEST_FLAGS): New variable. + (s-selftest, selftest-gdb, selftest-valgrind): Use it. + * vmsdbgout.c (vmsdbg_debug_hooks): Add filename parameter to early_finish hook. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 2914605..02d0c45 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1877,6 +1877,10 @@ endif # This does the things that can't be done on the host machine. rest.cross: specs +# GCC's selftests. +# Specify a dummy input file to placate the driver. +SELFTEST_FLAGS = -x c /dev/null -S -fself-test + # Run the selftests during the build once we have a driver and a cc1, # so that self-test failures are caught as early as possible. # Use "s-selftest" to ensure that we only run the selftests if the @@ -1884,18 +1888,19 @@ rest.cross: specs .PHONY: selftest selftest: s-selftest s-selftest: $(GCC_PASSES) cc1$(exeext) stmp-int-hdrs - $(GCC_FOR_TARGET) -xc -S -c /dev/null -fself-test + $(GCC_FOR_TARGET) $(SELFTEST_FLAGS) $(STAMP) $@ # Convenience method for running selftests under gdb: .PHONY: selftest-gdb selftest-gdb: $(GCC_PASSES) cc1$(exeext) stmp-int-hdrs - $(GCC_FOR_TARGET) -xc -S -c /dev/null -fself-test -wrapper gdb,--args + $(GCC_FOR_TARGET) $(SELFTEST_FLAGS) \ + -wrapper gdb,--args # Convenience method for running selftests under valgrind: .PHONY: selftest-valgrind selftest-valgrind: $(GCC_PASSES) cc1$(exeext) stmp-int-hdrs - $(GCC_FOR_TARGET) -xc -S -c /dev/null -fself-test \ + $(GCC_FOR_TARGET) $(SELFTEST_FLAGS) \ -wrapper valgrind,--leak-check=full # Recompile all the language-independent object files. -- 2.7.4