We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e94a051 commit 19748ecCopy full SHA for 19748ec
Makefile
@@ -214,6 +214,10 @@ all: ocaml_emulator/riscv_ocaml_sim_$(ARCH) c_emulator/riscv_sim_$(ARCH)
214
json: $(SAIL_SRCS) model/main.sail Makefile
215
@sail -json $(SAIL_FLAGS) $(SAIL_SRCS)
216
217
+.PHONY: check-json
218
+check-json:
219
+ sail -json $(SAIL_FLAGS) $(SAIL_SRCS) | python3 -c "import json; import sys; j=json.load(sys.stdin)"
220
+
221
output: $(SAIL_SRCS) model/main.sail Makefile
222
sail -output-sail $(SAIL_FLAGS) $(SAIL_SRCS)
223
0 commit comments