Skip to content

Commit b1e56a6

Browse files
authoredDec 29, 2022
Fix clean in isa/ with non-default compiler (riscv-software-src#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.
1 parent 48491da commit b1e56a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Makefile.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ debug-check-fast:
3737
$(MAKE) -C debug -f $(debug_src_dir)/Makefile src_dir=$(debug_src_dir) XLEN=$(XLEN) spike$(XLEN)
3838

3939
clean:
40-
[ ! -d isa ] || $(MAKE) -C isa -f $(isa_src_dir)/Makefile src_dir=$(isa_src_dir) clean
40+
[ ! -d isa ] || $(MAKE) -C isa -f $(isa_src_dir)/Makefile src_dir=$(isa_src_dir) XLEN=$(XLEN) $(RISCV_PREFIX_VAR) clean
4141
[ ! -d benchmarks ] || $(MAKE) -C benchmarks -f $(bmarkdir)/Makefile src_dir=$(bmarkdir) clean
4242
[ ! -d debug ] || $(MAKE) -C debug -f $(debug_src_dir)/Makefile src_dir=$(debug_src_dir) clean
4343

0 commit comments

Comments
 (0)
Please sign in to comment.