aboutsummaryrefslogtreecommitdiff
path: root/doc/build-unix.md
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2018-10-04 00:58:01 -0300
committerMarcoFalke <falke.marco@gmail.com>2018-10-04 00:58:08 -0300
commit69a29b5a8ecf4e067e0a2479e72192109bd3918a (patch)
tree3fd2eee7411b3eea166e25d2b50e89df0bc22e52 /doc/build-unix.md
parentbfaeb84f0b988c4b513ad17a3ab416bc3572d845 (diff)
parentfad95e8da60d8eceb54a92be513941d7d04c1eb9 (diff)
downloadbitcoin-69a29b5a8ecf4e067e0a2479e72192109bd3918a.tar.xz
Merge #14264: doc: Split depends installation instructions per arch
fad95e8da6 doc: Split build linux dependencies (MarcoFalke) 0000009015 doc: Split depends installation instructions per arch (MarcoFalke) Pull request description: The current depends installation instructions fail on bionic with ``` E: Unable to locate package g++-4.8-aarch64-linux-gnu E: Unable to locate package gcc-4.8-aarch64-linux-gnu E: Unable to locate package g++-4.8-arm-linux-gnueabihf E: Unable to locate package gcc-4.8-arm-linux-gnueabihf ``` Also, they fail due to missing dependencies `make automake cmake pkg-config python3` Fix this by removing the explicit version and splitting them into common instructions and instructions per linux architecture. Tree-SHA512: 25d5efa7450a0b1bbd569f431158f5a25bf4fe34f6adc32ebdfd6b6db9447ce083f555f20ff5b9f7c458864986c15d65219a31a1cd2b18bad9965ece2ea5e3be
Diffstat (limited to 'doc/build-unix.md')
-rw-r--r--doc/build-unix.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/build-unix.md b/doc/build-unix.md
index 3f8848abf2..9162098967 100644
--- a/doc/build-unix.md
+++ b/doc/build-unix.md
@@ -70,7 +70,11 @@ tuned to conserve memory with additional CXXFLAGS:
Build requirements:
- sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils python3 libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-test-dev libboost-thread-dev
+ sudo apt-get install build-essential libtool autotools-dev automake pkg-config bsdmainutils python3
+
+Now, you can either build from self-compiled [depends](/depends/README.md) or install the required dependencies:
+
+ sudo apt-get libssl-dev libevent-dev libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-test-dev libboost-thread-dev
BerkeleyDB is required for the wallet.
@@ -97,7 +101,7 @@ ZMQ dependencies (provides ZMQ API):
sudo apt-get install libzmq3-dev
-#### Dependencies for the GUI
+GUI dependencies:
If you want to build bitcoin-qt, make sure that the required packages for Qt development
are installed. Qt 5 is necessary to build the GUI.