mirror of
https://github.com/dogecoin/dogecoin.git
synced 2026-01-31 02:20:53 +00:00
update archlinux build guide
This commit is contained in:
parent
eb15e9ce97
commit
7724fd387e
@ -1,20 +1,17 @@
|
||||
Arch Linux build guide
|
||||
-----------------------------------
|
||||
----------------------
|
||||
|
||||
***NOTE: This documentation is outdated and needs to be updated***
|
||||
**Last tested with:** 1.14.6-dev (as of 22884709)
|
||||
**Test date:** 2022/07/15
|
||||
|
||||
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
|
||||
dogecoind on archlinux:
|
||||
|
||||
pacman -S git base-devel boost libevent python
|
||||
git clone https://github.com/bitcoin/bitcoin.git
|
||||
cd bitcoin/
|
||||
```sh
|
||||
pacman -S git base-devel boost libevent python db
|
||||
git clone https://github.com/dogecoin/dogecoin.git
|
||||
cd dogecoin/
|
||||
./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.
|
||||
./configure --without-gui --without-miniupnpc
|
||||
make
|
||||
```
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user