Skip to content

Commit e66ab74

Browse files
committed
Fix Makefile compile targets
1 parent 4231d10 commit e66ab74

File tree

4 files changed

+534
-4
lines changed

4 files changed

+534
-4
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ APPNAME = bchwallet
22
OUTDIR = pkg
33

44
# Allow user to override cross compilation scope
5-
OSARCH ?= darwin/386 darwin/amd64 dragonfly/amd64 freebsd/386 freebsd/amd64 freebsd/arm linux/386 linux/amd64 linux/arm netbsd/386 netbsd/amd64 netbsd/arm openbsd/386 openbsd/amd64 windows/386 windows/amd64
6-
DIRS ?= darwin_386 darwin_amd64 dragonfly_amd64 freebsd_386 freebsd_amd64 freebsd_arm linux_386 linux_amd64 linux_arm netbsd_386 netbsd_amd64 netbsd_arm openbsd_386 openbsd_amd64 windows_386 windows_amd64
5+
OSARCH ?= darwin/amd64 dragonfly/amd64 freebsd/386 freebsd/amd64 freebsd/arm linux/386 linux/amd64 linux/arm netbsd/386 netbsd/amd64 netbsd/arm openbsd/386 openbsd/amd64 windows/386 windows/amd64
6+
DIRS ?= darwin_amd64 dragonfly_amd64 freebsd_386 freebsd_amd64 freebsd_arm linux_386 linux_amd64 linux_arm netbsd_386 netbsd_amd64 netbsd_arm openbsd_386 openbsd_amd64 windows_386 windows_amd64
77

88
all:
99
go build .

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ https://github.com/gcash/bchwallet/releases
7474

7575
Building or updating from source requires the following build dependencies:
7676

77-
- **Go 1.11.1 and greater**
77+
- **Go 1.16.4 and greater**
7878

7979
Installation instructions can be found here: http://golang.org/doc/install.
8080
It is recommended to add `$GOPATH/bin` to your `PATH` at this point.

go.mod

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,28 @@ require (
66
github.com/btcsuite/golangcrypto v0.0.0-20150304025918-53f62d9b43e8
77
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792
88
github.com/davecgh/go-spew v1.1.1
9-
github.com/gcash/bchd v0.18.1-0.20210524044114-dc643242af4d
9+
github.com/gcash/bchd v0.18.1-0.20210524104807-34d7fe5c34b2
1010
github.com/gcash/bchlog v0.0.0-20180913005452-b4f036f92fa6
1111
github.com/gcash/bchutil v0.0.0-20210113190856-6ea28dff4000
1212
github.com/gcash/bchwallet/walletdb v0.0.0-20210524044131-61bcca2ae6f9
1313
github.com/gcash/neutrino v0.0.0-20210524094834-74cf6b86456c
1414
github.com/golang/protobuf v1.5.2
15+
github.com/improbable-eng/grpc-web v0.14.0 // indirect
1516
github.com/jarcoal/httpmock v1.0.8
1617
github.com/jessevdk/go-flags v1.5.0
1718
github.com/jrick/logrotate v1.0.0
19+
github.com/klauspost/compress v1.12.2 // indirect
1820
github.com/lightninglabs/gozmq v0.0.0-20191113021534-d20a764486bf
1921
github.com/miekg/dns v1.1.42
22+
github.com/simpleledgerinc/goslp v0.0.0-20210423125905-3c2e5f2ef33f // indirect
2023
github.com/tyler-smith/go-bip39 v1.1.0
2124
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a
2225
golang.org/x/net v0.0.0-20210521195947-fe42d452be8f
2326
golang.org/x/sys v0.0.0-20210521203332-0cec03c779c1 // indirect
2427
golang.org/x/term v0.0.0-20210503060354-a79de5458b56 // indirect
2528
google.golang.org/genproto v0.0.0-20210521181308-5ccab8a35a9a // indirect
2629
google.golang.org/grpc v1.38.0
30+
nhooyr.io/websocket v1.8.7 // indirect
2731
)
2832

2933
replace github.com/gcash/bchwallet/walletdb => ./walletdb

0 commit comments

Comments
 (0)