diff options
author | Romain Naour <romain.naour@gmail.com> | 2020-06-03 12:30:57 -0600 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 2020-06-03 12:32:53 -0600 |
commit | b19d8aac15649f31a7588b2634411a1922906ea8 (patch) | |
tree | cdc1ee1386242b23a795e2aa1978da8740161fe2 /gcc | |
parent | ef4e0c35546ba2c897613925c1d2485603ca3ab1 (diff) | |
download | gcc-b19d8aac15649f31a7588b2634411a1922906ea8.zip gcc-b19d8aac15649f31a7588b2634411a1922906ea8.tar.gz gcc-b19d8aac15649f31a7588b2634411a1922906ea8.tar.bz2 |
Fix missing dependencies for selftests which occasionally causes failed builds.
gcc/
* Makefile.in (SELFTEST_DEPS): Move before including language makefile
fragments.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index aab1dbb..be11311 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1735,6 +1735,10 @@ $(FULL_DRIVER_NAME): ./xgcc$(exeext) $(LN_S) $< $@ # +# SELFTEST_DEPS need to be set before including language makefile fragments. +# Otherwise $(SELFTEST_DEPS) is empty when used from <LANG>/Make-lang.in. +SELFTEST_DEPS = $(GCC_PASSES) stmp-int-hdrs $(srcdir)/testsuite/selftests + # Language makefile fragments. # The following targets define the interface between us and the languages. @@ -2010,8 +2014,6 @@ DEVNULL=$(if $(findstring mingw,$(build)),nul,/dev/null) SELFTEST_FLAGS = -nostdinc $(DEVNULL) -S -o $(DEVNULL) \ -fself-test=$(srcdir)/testsuite/selftests -SELFTEST_DEPS = $(GCC_PASSES) stmp-int-hdrs $(srcdir)/testsuite/selftests - # Run the selftests during the build once we have a driver and the frontend, # so that self-test failures are caught as early as possible. # Use "s-selftest-FE" to ensure that we only run the selftests if the |