You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 4, 2019. It is now read-only.
* wip makefile updates
* Fixed makefile and updated README
* Fixed readme changes
* Added go module documentation and fixed wiki links to EP
* Added go modules on for makefile commands and documentation
setup: ## Install all the build and lint dependencies
21
-
go get -u github.com/alecthomas/gometalinter
22
-
go get -u github.com/golang/dep/...
23
-
go get -u github.com/pierrre/gotestcover
24
-
go get -u golang.org/x/tools/cmd/cover
25
-
go get -u github.com/omeid/go-resources/cmd/resources
26
-
dep ensure
27
-
gometalinter --install
28
-
29
17
build: cmd/abigen cmd/bootnode cmd/disasm cmd/ethtest cmd/evm cmd/gethrpctest cmd/rlpdump cmd/geth ## Build a local snapshot binary version of all commands
30
18
@ls -ld $(BINARY)/*
31
19
32
-
cmd/geth: chainconfig ## Build a local snapshot binary version of geth. Use WITH_SVM=0 to disable building with SputnikVM (default: WITH_SVM=1)
33
-
ifeq (${WITH_SVM}, 1)
34
-
./scripts/build_sputnikvm.sh build
35
-
else
20
+
cmd/geth: chainconfig ## Build a local snapshot binary version of geth.
36
21
mkdir -p ./${BINARY}
37
-
go build ${LDFLAGS} -o ${BINARY}/geth -tags="netgo" ./cmd/geth
38
-
endif
22
+
${GO_MOD} go build -o ${BINARY}/geth -tags="netgo" ./cmd/geth
39
23
@echo "Done building geth."
40
24
@echo "Run \"$(BINARY)/geth\" to launch geth."
41
25
42
26
cmd/abigen: ## Build a local snapshot binary version of abigen.
0 commit comments