@@ -15,29 +15,30 @@ geth-cross: geth-linux geth-darwin geth-windows geth-android
15
15
@ls -l $(GOBIN ) /geth-*
16
16
17
17
geth-linux : xgo
18
- build/env.sh $(GOBIN ) /xgo --dest=$(GOBIN ) --deps=https://gmplib.org/download/gmp/gmp-6.0.0a.tar.bz2 --targets=linux/* -v ./cmd/geth
18
+ build/env.sh $(GOBIN ) /xgo --dest=$(GOBIN ) --deps=https://gmplib.org/download/gmp/gmp-6.0.0a.tar.bz2 --targets=linux/* -v $( shell build/flags.sh) ./cmd/geth
19
19
@echo " Linux cross compilation done:"
20
20
@ls -l $(GOBIN ) /geth-linux-*
21
21
22
22
geth-darwin : xgo
23
- build/env.sh $(GOBIN ) /xgo --dest=$(GOBIN ) --deps=https://gmplib.org/download/gmp/gmp-6.0.0a.tar.bz2 --targets=darwin/* -v ./cmd/geth
23
+ build/env.sh $(GOBIN ) /xgo --dest=$(GOBIN ) --deps=https://gmplib.org/download/gmp/gmp-6.0.0a.tar.bz2 --targets=darwin/* -v $( shell build/flags.sh) ./cmd/geth
24
24
@echo " Darwin cross compilation done:"
25
25
@ls -l $(GOBIN ) /geth-darwin-*
26
26
27
27
geth-windows : xgo
28
- build/env.sh $(GOBIN ) /xgo --dest=$(GOBIN ) --deps=https://gmplib.org/download/gmp/gmp-6.0.0a.tar.bz2 --targets=windows/* -v ./cmd/geth
28
+ build/env.sh $(GOBIN ) /xgo --dest=$(GOBIN ) --deps=https://gmplib.org/download/gmp/gmp-6.0.0a.tar.bz2 --targets=windows/* -v $( shell build/flags.sh) ./cmd/geth
29
29
@echo " Windows cross compilation done:"
30
30
@ls -l $(GOBIN ) /geth-windows-*
31
31
32
32
geth-android : xgo
33
- build/env.sh $(GOBIN ) /xgo --dest=$(GOBIN ) --deps=https://gmplib.org/download/gmp/gmp-6.0.0a.tar.bz2 --targets=android-16/* ,android-21/* -v ./cmd/geth
33
+ build/env.sh $(GOBIN ) /xgo --dest=$(GOBIN ) --deps=https://gmplib.org/download/gmp/gmp-6.0.0a.tar.bz2 --targets=android-16/* ,android-21/* -v $( shell build/flags.sh) ./cmd/geth
34
34
@echo " Android cross compilation done:"
35
35
@ls -l $(GOBIN ) /geth-android-*
36
36
37
37
evm :
38
- build/env.sh $(GOROOT ) /bin/go install -v $(shell build/ldflags .sh) ./cmd/evm
38
+ build/env.sh $(GOROOT ) /bin/go install -v $(shell build/flags .sh) ./cmd/evm
39
39
@echo " Done building."
40
40
@echo " Run \" $( GOBIN) /evm to start the evm."
41
+
41
42
mist :
42
43
build/env.sh go install -v $(shell build/flags.sh) ./cmd/mist
43
44
@echo " Done building."
0 commit comments