Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/exercises/lynn/sample_processor/config/sail.json
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
"supported": false
},
"U": {
"supported": false
"supported": true // This should be false, currently true to work around sail bug
},
"Zibi": {
"supported": false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ ref_model_type: sail # sail or spike
udb_config: lynn-rv32I.yaml
linker_script: link.ld
dut_include_dir: . # Directory containing DUT specific rvmodel_macros.h header
include_priv_tests: False
6 changes: 3 additions & 3 deletions examples/exercises/lynn/tests/act4/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ $(STAMP): Makefile
@$(MAKE) -C $(RISCV_ARCH_TEST) \
CONFIG_FILES=$(CONFIG_FILES) \
WORKDIR=$(WORK_DIR) \
EXTENSIONS=I \
--jobs $$(nproc)
@rm -f $(ELFS_DIR)/Zicntr/*csrrc*
@rm -f $(ELFS_DIR)/Zihpm/*csrrc*
@rm -rf $(ELFS_DIR)/Zicsr
@rm -f $(ELFS_DIR)/Zicntr/*csrrc*
@rm -f $(ELFS_DIR)/Zihpm/*csrrc*
@touch $(STAMP)

.PHONY: list-elfs
Expand Down