mirror of
				https://github.com/openhwgroup/cvw
				synced 2025-02-11 06:05:49 +00:00 
			
		
		
		
	fixed issue where the unused spike elf files were being used to find objdump files that didn't exist causing makefile-memfile to fail prematurely
This commit is contained in:
		
							parent
							
								
									3286b6aaec
								
							
						
					
					
						commit
						1fab7605f5
					
				@ -8,8 +8,9 @@ IMPERASDIR	:= $(ROOT)/tests/imperas-riscv-tests
 | 
				
			|||||||
ALLDIRS := $(ARCHDIR)/$(SUFFIX) $(WALLYDIR)/$(SUFFIX) 
 | 
					ALLDIRS := $(ARCHDIR)/$(SUFFIX) $(WALLYDIR)/$(SUFFIX) 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ELFFILES	?= $(shell find $(ALLDIRS) -type f -regex ".*\.elf")
 | 
					ELFFILES	?= $(shell find $(ALLDIRS) -type f -regex ".*\.elf")
 | 
				
			||||||
 | 
					OBJDUMPFILES	?= $(shell find $(ALLDIRS) -type f -regex ".*\.elf.objdump")
 | 
				
			||||||
MEMFILES ?= $(ELFFILES:.elf=.elf.memfile)
 | 
					MEMFILES ?= $(ELFFILES:.elf=.elf.memfile)
 | 
				
			||||||
ADDRFILES ?= $(ELFFILES:.elf=.elf.objdump.addr)
 | 
					ADDRFILES ?= $(OBJDUMPFILES:.objdump=.objdump.addr)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
print:
 | 
					print:
 | 
				
			||||||
	echo "files in $(ALLDIRS) are $(ELFFILES)."
 | 
						echo "files in $(ALLDIRS) are $(ELFFILES)."
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user