File tree Expand file tree Collapse file tree 1 file changed +5
-10
lines changed Expand file tree Collapse file tree 1 file changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -277,22 +277,17 @@ A list of additional configure flags can be displayed with:
277
277
278
278
Setup and Build Example: Arch Linux
279
279
-----------------------------------
280
- This example lists the steps necessary to setup and build a command line only, non-wallet distribution of the latest changes on Arch Linux:
280
+ This example lists the steps necessary to setup and build a command line only distribution of the latest changes on Arch Linux:
281
281
282
- pacman -S git base-devel boost libevent python
282
+ pacman --sync --needed autoconf automake boost gcc git libevent libtool make pkgconf python sqlite
283
283
git clone https://github.com/bitcoin/bitcoin.git
284
284
cd bitcoin/
285
285
./autogen.sh
286
- ./configure --disable-wallet --without-gui --without-miniupnpc
286
+ ./configure
287
287
make check
288
+ ./src/bitcoind
288
289
289
- Note:
290
- Enabling wallet support requires either compiling against a Berkeley DB newer than 4.8 (package ` db ` ) using ` --with-incompatible-bdb ` ,
291
- or building and depending on a local version of Berkeley DB 4.8. The readily available Arch Linux packages are currently built using
292
- ` --with-incompatible-bdb ` according to the [ PKGBUILD] ( https://github.com/archlinux/svntogit-community/blob/packages/bitcoin/trunk/PKGBUILD ) .
293
- As mentioned above, when maintaining portability of the wallet between the standard Bitcoin Core distributions and independently built
294
- node software is desired, Berkeley DB 4.8 must be used.
295
-
290
+ If you intend to work with legacy Berkeley DB wallets, see [ Berkeley DB] ( #berkeley-db ) section.
296
291
297
292
ARM Cross-compilation
298
293
-------------------
You can’t perform that action at this time.
0 commit comments