configure, jit: Allow for 'make check-gcc-jit'.

This is a convenience feature that allows the user to
do "make check-gcc-jit" at the top level of the build
to check that facility in isolation from others.

Signed-off-by: Iain Sandoe <iain@sandoe.co.uk>

ChangeLog:

	* Makefile.def: Add a jit check target for the jit
	language.
	* Makefile.in: Regenerate.
This commit is contained in:
Iain Sandoe 2021-08-07 14:45:56 +01:00
parent 4703182a06
commit 8593d2fcbb
2 changed files with 9 additions and 0 deletions

View File

@ -656,6 +656,7 @@ languages = { language=go; gcc-check-target=check-go;
lib-check-target=check-gotools; };
languages = { language=d; gcc-check-target=check-d;
lib-check-target=check-target-libphobos; };
languages = { language=jit; gcc-check-target=check-jit; };
// Toplevel bootstrap
bootstrap_stage = { id=1 ; };

View File

@ -56590,6 +56590,14 @@ check-gcc-d:
(cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-d);
check-d: check-gcc-d check-target-libphobos
.PHONY: check-gcc-jit check-jit
check-gcc-jit:
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
$(HOST_EXPORTS) \
(cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-jit);
check-jit: check-gcc-jit
# The gcc part of install-no-fixedincludes, which relies on an intimate
# knowledge of how a number of gcc internal targets (inter)operate. Delegate.