diff options
author | fanquake <fanquake@gmail.com> | 2019-09-10 11:08:17 +1000 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2019-09-12 20:28:53 +1000 |
commit | e09913f1c47e693b0c6fafef55b9ca78e5f3abc0 (patch) | |
tree | b81045dd845bddbf4ce0f953ac93d158452b5489 /doc/build-unix.md | |
parent | 376f4929f8f75011b72b2f9c3164980db482278a (diff) |
doc: specify protobuf as optional in build docs
Diffstat (limited to 'doc/build-unix.md')
-rw-r--r-- | doc/build-unix.md | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/doc/build-unix.md b/doc/build-unix.md index eb88aca050..8f6c702f5c 100644 --- a/doc/build-unix.md +++ b/doc/build-unix.md @@ -112,12 +112,16 @@ To build without GUI pass `--without-gui`. To build with Qt 5 you need the following: - sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler + sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libqrencode (optional) can be installed with: sudo apt-get install libqrencode-dev +protobuf (optional) can be installed with: + + sudo apt-get install libprotobuf-dev protobuf-compiler + Once these are installed, they will be found by configure and a bitcoin-qt executable will be built by default. @@ -140,12 +144,16 @@ ZMQ dependencies (provides ZMQ API): To build with Qt 5 you need the following: - sudo dnf install qt5-qttools-devel qt5-qtbase-devel protobuf-devel + sudo dnf install qt5-qttools-devel qt5-qtbase-devel libqrencode (optional) can be installed with: sudo dnf install qrencode-devel +protobuf (optional) can be installed with: + + sudo dnf install protobuf-devel + Notes ----- The release is built with GCC and then "strip bitcoind" to strip the debug |