Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/pr/31'
Browse files Browse the repository at this point in the history
  • Loading branch information
rustyrussell committed Aug 14, 2016
2 parents bcd3e5f + 6ac9632 commit dc0efc5
Showing 1 changed file with 36 additions and 1 deletion.
37 changes: 36 additions & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,36 @@ You will need several development libraries:
You will also need a version of bitcoind with segregated witness support,
such as the 0.13 or above.

To Build on Ubuntu 15.10 (not needed for 16.04)
To Build on Ubuntu 16.04
---------------------

Get dependencies:
```
sudo apt-get install libprotobuf-c-dev libsodium-dev libbase58-dev
```

Clone lightning and initialize submodules:
```
git clone https://github.com/ElementsProject/lightning.git
cd lightning
git submodule init
git submodule update
```

Build lightning:
```
make
```

Running lightning:
```
bitcoind
./daemon/lightningd
./daemon/lightning-cli help
```
**Note**: You may need to include `testnet=1` in `bitcoin.conf`

To Build on Ubuntu 15.10
------------------------
Build protobuf-c dependency (>= 1.1.0):
```
Expand All @@ -35,6 +64,12 @@ git submodule update
Build lightning:
```
make
```

Running lightning:
```
bitcoind
export LD_LIBRARY_PATH=/usr/local/lib
./daemon/lightningd
./daemon/lightning-cli help
```

0 comments on commit dc0efc5

Please sign in to comment.