1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2024-12-23 15:18:11 +00:00

Edited ch03.asciidoc with Atlas code editor

This commit is contained in:
nadams 2017-04-24 08:40:58 -07:00
parent f28d6ee729
commit 060e6db2db

View File

@ -140,14 +140,21 @@ The +configure+ script allows you to enable or disable certain features of +bitc
[TIP] [TIP]
==== ====
Here are some useful options that override the default behavior of the configure script: Here are some useful options that override the default behavior of the configure script:
++++
<dl class="test">
<dt><code>--prefix=$HOME</code></dt>
<dd><p>This overrides the default installation location (which is +/usr/local/+) for the resulting executable. Use $HOME to put everything in your home directory, or a different path.</p></dd>
++--prefix=$HOME++:: This overrides the default installation location (which is +/usr/local/+) for the resulting executable. Use $HOME to put everything in your home directory, or a different path. <dt><code>--disable-wallet</code></dt>
<dd><p>This is used to disable the reference wallet implementation.</p></dd>
++--disable-wallet++:: This is used to disable the reference wallet implementation. <dt><code>--with-incompatible-bdb</code></dt>
<dd><p>If you are building a wallet, allow the use of an incompatible version of the Berkeley DB library.</p></dd>
++--with-incompatible-bdb++:: If you are building a wallet, allow the use of an incompatible version of the Berkeley DB library. <dt><code>--with-gui=no</code></dt>
<dd><p>Don't build the graphical user interface, which requires the Qt library. This builds server and command-line bitcoin only.</p></dd>
++--with-gui=no++:: Don't build the graphical user interface, which requires the Qt library. This builds server and command-line bitcoin only. </dl>
++++
==== ====
Next, run the +configure+ script to automatically discover all the necessary libraries and create a customized build script for your system: Next, run the +configure+ script to automatically discover all the necessary libraries and create a customized build script for your system: