Skip to content

Commit

Permalink
add makefile target for zkevm.gob
Browse files Browse the repository at this point in the history
This adds a new target for constructing a `zkevm.gob` using `go-corset`.
For now, we use `zkevm.gob` until things have stablised and we can
return to the `zkevm.bin` format as before.
  • Loading branch information
DavePearce committed Jan 10, 2025
1 parent b644a39 commit b807100
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
CORSET ?= corset
GO_CORSET ?= go-corset

HUB_COLUMNS := $(wildcard hub/columns/*lisp)

Expand Down Expand Up @@ -171,6 +172,9 @@ define.go: ${ZKEVM_MODULES}
zkevm.bin: ${ZKEVM_MODULES}
${CORSET} compile -vv -o $@ ${ZKEVM_MODULES}

zkevm.gob: ${ZKEVM_MODULES}
${GO_CORSET} compile -o $@ ${ZKEVM_MODULES}


ZKEVM_MODULES_FOR_REFERENCE_TESTS := ${ALU} \
${BIN} \
Expand Down

0 comments on commit b807100

Please sign in to comment.