aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorIgor Bubelov <igor@bubelov.com>2022-06-19 14:18:31 +0700
committerIgor Bubelov <igor@bubelov.com>2022-06-22 13:12:03 +0700
commitf67b6fce3777ea8dfd23b3983d0b46a2f69d7d77 (patch)
tree757bddfd5267d8466892f5d15b88c84e6e8bd824 /doc
parent8e7eeb5971444c0c93e9a89bbdcc3a51a19e09e9 (diff)
downloadbitcoin-f67b6fce3777ea8dfd23b3983d0b46a2f69d7d77.tar.xz
Update Arch Linux build example
Diffstat (limited to 'doc')
-rw-r--r--doc/build-unix.md15
1 files changed, 5 insertions, 10 deletions
diff --git a/doc/build-unix.md b/doc/build-unix.md
index f02729ee32..bcfa25dc76 100644
--- a/doc/build-unix.md
+++ b/doc/build-unix.md
@@ -277,22 +277,17 @@ A list of additional configure flags can be displayed with:
Setup and Build Example: Arch Linux
-----------------------------------
-This example lists the steps necessary to setup and build a command line only, non-wallet 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 -S git base-devel boost libevent python
+ pacman --sync --needed autoconf automake boost gcc git libevent libtool make pkgconf python sqlite
git clone https://github.com/bitcoin/bitcoin.git
cd bitcoin/
./autogen.sh
- ./configure --disable-wallet --without-gui --without-miniupnpc
+ ./configure
make check
+ ./src/bitcoind
-Note:
-Enabling wallet support requires either compiling against a Berkeley DB newer than 4.8 (package `db`) using `--with-incompatible-bdb`,
-or building and depending on a local version of Berkeley DB 4.8. The readily available Arch Linux packages are currently built using
-`--with-incompatible-bdb` according to the [PKGBUILD](https://github.com/archlinux/svntogit-community/blob/packages/bitcoin/trunk/PKGBUILD).
-As mentioned above, when maintaining portability of the wallet between the standard Bitcoin Core distributions and independently built
-node software is desired, Berkeley DB 4.8 must be used.
-
+If you intend to work with legacy Berkeley DB wallets, see [Berkeley DB](#berkeley-db) section.
ARM Cross-compilation
-------------------