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.
|
|
|
|
* libsodium: for crypto.
|
|
|
|
* libcrypto: (OpenSSL) library for bignum implementation
|
|
|
|
|
2016-05-26 07:55:24 +02:00
|
|
|
You will also need a version of bitcoind with segregated witness support:
|
|
|
|
* https://github.com/sipa/bitcoin/tree/segwit4
|
|
|
|
|
|
|
|
To Build on Ubuntu 15.10 (not needed for 16.04)
|
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 ../
|
|
|
|
```
|
|
|
|
|
|
|
|
Clone lightning and initialize submodules:
|
|
|
|
```
|
|
|
|
git clone https://github.com/ElementsProject/lightning.git
|
|
|
|
cd lighting
|
|
|
|
git submodule init
|
|
|
|
git submodule update
|
|
|
|
```
|
|
|
|
|
|
|
|
Build lightning:
|
|
|
|
```
|
|
|
|
make
|
|
|
|
export LD_LIBRARY_PATH=/usr/local/lib
|
|
|
|
./daemon/lightningd
|
|
|
|
```
|