Skip to content

Commit fcc49c7

Browse files
ishitatsuyukicmuellner
authored andcommitted
Add stage2 and other dependencies for check-glibc-linux
Some glibc tests like tst-unwind-{main,ctor} depends on stage2 artifacts (in particular, GCC runtime libs) to be properly installed. Add stage2 dependencies to avoid these tests from spuriously failing. The test suite also uses the simulator and Deja GNU, both of which were not declared as dependencies, so add them as well. Closes: #1379
1 parent a19f671 commit fcc49c7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1000,7 +1000,8 @@ stamps/check-gcc-linux: stamps/build-gcc-linux-stage2 $(SIM_STAMP) stamps/build-
10001000
mkdir -p $(dir $@)
10011001
date > $@
10021002

1003-
stamps/check-glibc-linux-%: $(addprefix stamps/build-glibc-linux-,$(GLIBC_MULTILIB_NAMES))
1003+
stamps/check-glibc-linux-%: stamps/build-gcc-linux-stage2 $(SIM_STAMP) stamps/build-dejagnu \
1004+
$(addprefix stamps/build-glibc-linux-,$(GLIBC_MULTILIB_NAMES))
10041005
$(eval $@_BUILD_DIR := $(notdir $@))
10051006
$(eval $@_BUILD_DIR := $(subst check-,build-,$($@_BUILD_DIR)))
10061007
$(SIM_PREPARE) $(MAKE) -C $($@_BUILD_DIR) check

0 commit comments

Comments
 (0)