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 Feb 23, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,24 @@ npm run setup
26
26
27
27
If the window doesn't load after running `npm start`: try clicking on dev tools window and hitting `cmd-r` to refresh the window.
28
28
29
+
### Building
30
+
31
+
To build binaries for OSX:
32
+
```
33
+
cd $GOPATH/src/github.com/lightningnetwork/lnd
34
+
git pull
35
+
glide install
36
+
go install . ./cmd/...
37
+
```
38
+
39
+
To build binaries for Windows:
40
+
```
41
+
cd $GOPATH/src/github.com/lightningnetwork/lnd
42
+
git pull
43
+
glide install
44
+
GOOS=windows GOARCH=amd64 go build -v
45
+
```
46
+
29
47
### Packaging
30
48
To package the app for all platforms run `npm run package-all-electron`. Make sure you have xquartz `brew cask install xquartz` wine installed `brew install wine`. If you run into `ENFILE: file table overflow` as an error put `ulimit -n 2560` in your bash profile.
0 commit comments