Merge pull request #19 from bitpay/kleetus-patch-1

Update README.md
This commit is contained in:
Braydon Fuller 2015-07-10 17:22:22 -04:00
commit 82d0539da8
1 changed files with 9 additions and 0 deletions

View File

@ -114,11 +114,20 @@ There is a config_options.sh that has the configure options used to build libbit
Or you can also manually compile using:
configure and make (Linux/Unix)
```bash
$ cd libbitcoind
$ ./configure --enable-tests=no --enable-daemonlib --with-gui=no --without-qt --without-miniupnpc --without-bdb --enable-debug --disable-wallet --without-utils
$ make
```
configure and make (Mac OS X) --note the addition of prefix to the location where the libbitcoind library will be installed.
```bash
$ cd libbitcoind
$ ./configure --enable-tests=no --enable-daemonlib --with-gui=no --without-qt --without-miniupnpc --without-bdb --enable-debug --disable-wallet --without-utils --prefix=<os_dir/lib>
$ make
```
And then copy the files (with Unix/Linux):
```bash