aboutsummaryrefslogtreecommitdiff
path: root/doc/build-archlinux.md
diff options
context:
space:
mode:
authorPatrick Lodder <[email protected]>2021-08-19 22:11:20 +0200
committerPatrick Lodder <[email protected]>2021-08-19 22:11:20 +0200
commitc39bdb9e49ab078f303ae1a2152e8a389fb0fdce (patch)
tree90f4dadfa22eb29b0e14ee897a05bba2e70cd3d7 /doc/build-archlinux.md
parentMerge pull request #2458 from patricklodder/1.14.4-disconnect-bad-node-test (diff)
downloaddiscoin-c39bdb9e49ab078f303ae1a2152e8a389fb0fdce.tar.xz
discoin-c39bdb9e49ab078f303ae1a2152e8a389fb0fdce.zip
split off all distro-specific guides off build-unix.md
Diffstat (limited to 'doc/build-archlinux.md')
-rw-r--r--doc/build-archlinux.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/build-archlinux.md b/doc/build-archlinux.md
new file mode 100644
index 000000000..b568cdd37
--- /dev/null
+++ b/doc/build-archlinux.md
@@ -0,0 +1,17 @@
+Arch Linux build guide
+-----------------------------------
+This example lists the steps necessary to setup and build a command line only, non-wallet distribution of the latest changes on Arch Linux:
+
+ pacman -S git base-devel boost libevent python
+ git clone https://github.com/bitcoin/bitcoin.git
+ cd bitcoin/
+ ./autogen.sh
+ ./configure --disable-wallet --without-gui --without-miniupnpc
+ make check
+
+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://projects.archlinux.org/svntogit/community.git/tree/bitcoin/trunk/PKGBUILD).
+As mentioned above, when maintaining portability of the wallet between the standard Dogecoin Core distributions and independently built
+node software is desired, Berkeley DB 4.8 must be used.