Commit 8b4cdeb 1 parent 1114f79 commit 8b4cdeb Copy full SHA for 8b4cdeb
File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 98
98
@cd ./cmd/$* && $(GOBUILD ) -o $(GOBIN ) /$*
99
99
@echo " Run \" $( GOBIN) /$* \" to launch $* ."
100
100
101
+ build-libs :
102
+ ifeq ($(UNAME ) , Darwin )
103
+ @brew install libomp gmp
104
+ else ifeq ($(UNAME), Linux )
105
+ @sudo apt install libgtest-dev libomp-dev libgmp-dev
106
+ endif
107
+
101
108
# # erigon: build erigon
102
109
cdk-erigon : go-version cdk-erigon.cmd
103
110
@rm -f $(GOBIN ) /tg # Remove old binary to prevent confusion where users still use it because of the scripts
Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ Please install:
11
11
- Linux: ` libgtest-dev ` ` libomp-dev ` ` libgmp-dev `
12
12
- MacOS: ` brew install libomp ` ` brew install gmp `
13
13
14
+ Using the Makefile command: ` make build-libs ` will install these for the relevant architecture.
15
+
14
16
## zkevm-specific API Support
15
17
16
18
In order to enable the zkevm_ namespace, please add 'zkevm' to the http.api flag (see the example config below).
You can’t perform that action at this time.
0 commit comments