@@ -7,8 +7,11 @@ Some notes on how to build Bitcoin Core in Unix.
7
7
To Build
8
8
---------------------
9
9
10
+ If you are building from git directly, you need to run ` ./autogen.sh ` before
11
+ the first time you build. This is not required if you downloaded the source
12
+ code from the website.
13
+
10
14
``` bash
11
- ./autogen.sh
12
15
./configure
13
16
make # use "-j N" for N parallel jobs
14
17
make install # optional
@@ -87,6 +90,10 @@ Additionally, to support Wayland protocol for modern desktop environments:
87
90
88
91
sudo apt install qtwayland5
89
92
93
+ If you are building directly from git (instead of the official source code release), you will also need:
94
+
95
+ sudo apt install librsvg2-bin imagemagick
96
+
90
97
libqrencode (optional) can be installed with:
91
98
92
99
sudo apt-get install libqrencode-dev
@@ -144,6 +151,10 @@ Additionally, to support Wayland protocol for modern desktop environments:
144
151
145
152
sudo dnf install qt5-qtwayland
146
153
154
+ If you are building directly from git (instead of the official source code release), you will also need:
155
+
156
+ sudo dnf install librsvg2-tools ImageMagick
157
+
147
158
libqrencode (optional) can be installed with:
148
159
149
160
sudo dnf install qrencode-devel
@@ -202,8 +213,8 @@ Setup and Build Example: Arch Linux
202
213
-----------------------------------
203
214
This example lists the steps necessary to setup and build a command line only distribution of the latest changes on Arch Linux:
204
215
205
- pacman --sync --needed autoconf automake boost gcc git libevent libtool make pkgconf python sqlite
206
- git clone https://github.com/bitcoin /bitcoin.git
216
+ pacman --sync --needed autoconf automake boost gcc git libevent libtool make pkgconf python sqlite librsvg imagemagick
217
+ git clone https://github.com/bitcoinknots /bitcoin.git
207
218
cd bitcoin/
208
219
./autogen.sh
209
220
./configure
0 commit comments