From b1e56a620d976b89c7910e522989031e5f934b1b Mon Sep 17 00:00:00 2001 From: Alex Shpilkin Date: Thu, 29 Dec 2022 02:50:29 +0200 Subject: Fix clean in isa/ with non-default compiler (#443) The list of active tests in isa/ depends, via the COMPILER_SUPPORTS_* macros, on running the RISC-V compiler, so pass the necessary options when invoking make clean there. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile.in') diff --git a/Makefile.in b/Makefile.in index f00c8a2..831d25a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -37,7 +37,7 @@ debug-check-fast: $(MAKE) -C debug -f $(debug_src_dir)/Makefile src_dir=$(debug_src_dir) XLEN=$(XLEN) spike$(XLEN) clean: - [ ! -d isa ] || $(MAKE) -C isa -f $(isa_src_dir)/Makefile src_dir=$(isa_src_dir) clean + [ ! -d isa ] || $(MAKE) -C isa -f $(isa_src_dir)/Makefile src_dir=$(isa_src_dir) XLEN=$(XLEN) $(RISCV_PREFIX_VAR) clean [ ! -d benchmarks ] || $(MAKE) -C benchmarks -f $(bmarkdir)/Makefile src_dir=$(bmarkdir) clean [ ! -d debug ] || $(MAKE) -C debug -f $(debug_src_dir)/Makefile src_dir=$(debug_src_dir) clean -- cgit v1.1