Building Bitcoin from Source on MAC OSX 10.9

0

so I'm trying to get bitcoind running on my Mac and I cloned the source code from github. What I tried doing:

brew install autoconf automake berkeley-db4 boost miniupnpc openssl pkg-config protobuf qt libtool
git clone https://github.com/bitcoin/bitcoin.git
make

But then I get an error:

***No targets specified and no makefile found. 

However, I'm looking and I see Makefile.am Any Ideas on what to do?

user3513466

Posted 2014-07-24T02:02:05.680

Reputation: 31

Answers

2

As explained in the file doc/build-osx.md, before running make, you first need to run ./autogen.sh and ./configure.

Nate Eldredge

Posted 2014-07-24T02:02:05.680

Reputation: 21 420

Thanks for that. I got the make running however I'm getting a fatal error 'boost/config.hpp' file not found

include <boost/config.hpp>< – user3513466 2014-07-24T14:28:34.633

Ask a new question.Nate Eldredge 2014-07-24T14:35:51.163