Skip to content

Commit

Permalink
Use jazzct in Makefile.checksct.
Browse files Browse the repository at this point in the history
  • Loading branch information
J08nY committed May 8, 2024
1 parent 1b7cf84 commit a1fa063
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Makefile.checksct
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ ifneq ($(OP),)

SCT_FLAGS ?=

CHECK_SCT_S = ($(JASMINC) -slice $* -checkSCT $(SCT_FLAGS) $< > $@ 2>&1) $(CIT)
CHECK_SCT = ($(JASMINC) -checkSCT $(SCT_FLAGS) $< > $@ 2>&1) $(CIT)
CHECK_SCT_S = ($(JAZZCT) --slice $* --speculative $(SCT_FLAGS) $< > $@ 2>&1) $(CIT)
CHECK_SCT = ($(JAZZCT) --speculative $(SCT_FLAGS) $< > $@ 2>&1) $(CIT)

SCT_TARGETS = $(addsuffix .sct, $(FUNCTIONS))

Expand Down
1 change: 1 addition & 0 deletions src/Makefile.common
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ JEXT ?= jazz
override JFLAGS += -noinsertarraycopy
JINCLUDE = -I Jade:$(SRC)
JASMIN ?= jasminc
JAZZCT ?= jazzct
JASMINC := $(JASMIN) $(JFLAGS) $(JINCLUDE)
COMPILE = ($(JASMINC) -o $@ $<) $(CIT)

Expand Down

0 comments on commit a1fa063

Please sign in to comment.