mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-12 19:20:42 +02:00
build-unix: Update for SVG sources
This commit is contained in:
parent
09bbed8ab1
commit
5c3890fd48
@ -7,8 +7,11 @@ Some notes on how to build Bitcoin Core in Unix.
|
|||||||
To Build
|
To Build
|
||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
|
If you are building from git directly, you need to run `./autogen.sh` before
|
||||||
|
the first time you build. This is not required if you downloaded the source
|
||||||
|
code from the website.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
./autogen.sh
|
|
||||||
./configure
|
./configure
|
||||||
make # use "-j N" for N parallel jobs
|
make # use "-j N" for N parallel jobs
|
||||||
make install # optional
|
make install # optional
|
||||||
@ -87,6 +90,10 @@ Additionally, to support Wayland protocol for modern desktop environments:
|
|||||||
|
|
||||||
sudo apt install qtwayland5
|
sudo apt install qtwayland5
|
||||||
|
|
||||||
|
If you are building directly from git (instead of the official source code release), you will also need:
|
||||||
|
|
||||||
|
sudo apt install librsvg2-bin imagemagick
|
||||||
|
|
||||||
libqrencode (optional) can be installed with:
|
libqrencode (optional) can be installed with:
|
||||||
|
|
||||||
sudo apt-get install libqrencode-dev
|
sudo apt-get install libqrencode-dev
|
||||||
@ -144,6 +151,10 @@ Additionally, to support Wayland protocol for modern desktop environments:
|
|||||||
|
|
||||||
sudo dnf install qt5-qtwayland
|
sudo dnf install qt5-qtwayland
|
||||||
|
|
||||||
|
If you are building directly from git (instead of the official source code release), you will also need:
|
||||||
|
|
||||||
|
sudo dnf install librsvg2-tools ImageMagick
|
||||||
|
|
||||||
libqrencode (optional) can be installed with:
|
libqrencode (optional) can be installed with:
|
||||||
|
|
||||||
sudo dnf install qrencode-devel
|
sudo dnf install qrencode-devel
|
||||||
@ -202,8 +213,8 @@ Setup and Build Example: Arch Linux
|
|||||||
-----------------------------------
|
-----------------------------------
|
||||||
This example lists the steps necessary to setup and build a command line only distribution of the latest changes on Arch Linux:
|
This example lists the steps necessary to setup and build a command line only distribution of the latest changes on Arch Linux:
|
||||||
|
|
||||||
pacman --sync --needed autoconf automake boost gcc git libevent libtool make pkgconf python sqlite
|
pacman --sync --needed autoconf automake boost gcc git libevent libtool make pkgconf python sqlite librsvg imagemagick
|
||||||
git clone https://github.com/bitcoin/bitcoin.git
|
git clone https://github.com/bitcoinknots/bitcoin.git
|
||||||
cd bitcoin/
|
cd bitcoin/
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
./configure
|
./configure
|
||||||
|
Loading…
Reference in New Issue
Block a user