1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

litecoin toolchain のビルド, Ubuntu 17.10

Last updated at Posted at 2017-11-22

sudo apt install autoconf libtool libdb-dev libdb++-dev

準備

./autogen.sh
./configure

セットしていきます

configure: error: Found Berkeley DB other than 4.8, required for portable wallets (--with-incompatible-bdb to ignore or --disable-wallet to disable wallet functionality)

libdb-5系がシステムに入っているが4.8じゃないと駄目だそうな。 --with-incompatible-bdb を付けることで回避してみる

./configure --with-incompatible-bdb

configure: error: Could not link against boost_filesystem !

sudo apt install libboost-all-dev

他にもいくつか依存があったのでboost関連を全部入れちゃう

configure: error: libevent not found.

読んだまま

sudo apt install libevent-dev

configure完了

make -j10

完了

./src/litecoin-cli --version

Litecoin Core RPC client version v0.15.0.1-ba8ed3a93

確認

make install

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?