2016-03-16 06:36:17 +01:00
|
|
|
Library Requirements
|
|
|
|
--------------------
|
2016-02-25 05:55:00 +01:00
|
|
|
|
2016-03-16 06:36:17 +01:00
|
|
|
You will need several development libraries:
|
|
|
|
* libprotoc: the Google protocol buffer v2 library, 2.6.0 or above.
|
|
|
|
* protobuf-c: version 1.1.0 or above.
|
2016-08-18 06:55:13 +02:00
|
|
|
* libsqlite3: for database support.
|
2016-08-19 03:35:32 +02:00
|
|
|
* libgmp: for secp256k1
|
2017-04-04 08:02:57 +02:00
|
|
|
|
|
|
|
For actually doing development and running the tests, you will also need:
|
|
|
|
* pip3: to install python-bitcoinlib
|
|
|
|
* asciidoc: for formatting the man pages (if you change them)
|
|
|
|
* valgrind: for extra debugging checks
|
2016-03-16 06:36:17 +01:00
|
|
|
|
2016-08-09 05:35:31 +02:00
|
|
|
You will also need a version of bitcoind with segregated witness support,
|
|
|
|
such as the 0.13 or above.
|
2016-05-26 07:55:24 +02:00
|
|
|
|
2016-08-13 03:09:32 +02:00
|
|
|
To Build on Ubuntu 16.04
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
Get dependencies:
|
|
|
|
```
|
2017-05-09 15:33:42 +02:00
|
|
|
sudo apt-get install -y autoconf build-essential git libtool libprotobuf-c-dev libgmp-dev libsqlite3-dev python3
|
2017-04-04 08:02:57 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
For development or running tests, get additional dependencies:
|
|
|
|
```
|
2017-05-02 02:12:40 +02:00
|
|
|
sudo apt-get install -y asciidoc valgrind python3-pip && pip3 install python-bitcoinlib
|
2016-08-13 03:09:32 +02:00
|
|
|
```
|
|
|
|
|
2017-01-11 00:12:26 +01:00
|
|
|
Clone lightning:
|
2016-08-13 03:09:32 +02:00
|
|
|
```
|
|
|
|
git clone https://github.com/ElementsProject/lightning.git
|
|
|
|
cd lightning
|
|
|
|
```
|
|
|
|
|
|
|
|
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
|
2016-03-16 06:36:17 +01:00
|
|
|
------------------------
|
2016-02-25 05:55:00 +01:00
|
|
|
Build protobuf-c dependency (>= 1.1.0):
|
|
|
|
```
|
|
|
|
sudo apt-get install libprotoc-dev
|
|
|
|
git clone https://github.com/protobuf-c/protobuf-c.git
|
|
|
|
cd protobuf-c
|
|
|
|
./autogen.sh
|
|
|
|
./configure
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
cd ../
|
|
|
|
```
|
|
|
|
|
2017-01-11 00:12:26 +01:00
|
|
|
Clone lightning:
|
2016-02-25 05:55:00 +01:00
|
|
|
```
|
|
|
|
git clone https://github.com/ElementsProject/lightning.git
|
|
|
|
cd lighting
|
|
|
|
```
|
|
|
|
|
|
|
|
Build lightning:
|
|
|
|
```
|
|
|
|
make
|
2016-08-13 03:09:32 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Running lightning:
|
|
|
|
```
|
|
|
|
bitcoind
|
2016-02-25 05:55:00 +01:00
|
|
|
export LD_LIBRARY_PATH=/usr/local/lib
|
|
|
|
./daemon/lightningd
|
2016-08-13 03:09:32 +02:00
|
|
|
./daemon/lightning-cli help
|
2016-02-25 05:55:00 +01:00
|
|
|
```
|