3
Install git
pacman -S git
Install bitcoind dependencies as seen here: https://github.com/bitcoin/bitcoin/blob/master/doc/build-unix.txt
pacman -S boost boost-libs miniupnpc openssl db
Install arch-linux base development packages so you can use make
pacman -S base-devel
Download and install bitcoind from the github source
su daemonuser
cd /home/daemonuser
git clone https://github.com/bitcoin/bitcoin.git
cd /home/daemonuser/bitcoin/src/
make -f makefile.unix USE_UPNP=- USE_IPV6=0
bitcoind -daemon
Do you have a file called "classification.hpp" anywhere on your system? What version of boost did you install? (It looks like you may need a
-Iflag to tell the compiler whereboost/algorithm/string/classification.hppis.) – David Schwartz – 2013-05-02T06:49:58.160I don't know that much about arch linux, but it looks like you're installing
– Tom van der Woerdt – 2013-05-02T09:05:45.203boost-libs, which suggests that it only has the libraries. You need to install boost as well.boost was all that was needed, thank you both! – user3145 – 2013-05-02T19:54:18.753