Skip to content

Commit 5c3890f

Browse files
committed
build-unix: Update for SVG sources
1 parent 09bbed8 commit 5c3890f

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

doc/build-unix.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@ Some notes on how to build Bitcoin Core in Unix.
77
To Build
88
---------------------
99

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+
1014
```bash
11-
./autogen.sh
1215
./configure
1316
make # use "-j N" for N parallel jobs
1417
make install # optional
@@ -87,6 +90,10 @@ Additionally, to support Wayland protocol for modern desktop environments:
8790

8891
sudo apt install qtwayland5
8992

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+
9097
libqrencode (optional) can be installed with:
9198

9299
sudo apt-get install libqrencode-dev
@@ -144,6 +151,10 @@ Additionally, to support Wayland protocol for modern desktop environments:
144151

145152
sudo dnf install qt5-qtwayland
146153

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+
147158
libqrencode (optional) can be installed with:
148159

149160
sudo dnf install qrencode-devel
@@ -202,8 +213,8 @@ Setup and Build Example: Arch Linux
202213
-----------------------------------
203214
This example lists the steps necessary to setup and build a command line only distribution of the latest changes on Arch Linux:
204215

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
207218
cd bitcoin/
208219
./autogen.sh
209220
./configure

0 commit comments

Comments
 (0)