From e45876e440df9060a62ebc4f9dd8093ec1c254d5 Mon Sep 17 00:00:00 2001 From: Chris Kleeschulte Date: Fri, 10 Jul 2015 15:36:35 -0400 Subject: [PATCH] Update README.md Added the requirement of prefix on Mac OS X manually building. --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 0c09b8b8..b8dd35f3 100644 --- a/README.md +++ b/README.md @@ -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= +$ make +``` And then copy the files (with Unix/Linux): ```bash