Skip to content

Instantly share code, notes, and snippets.

@bedekelly
Created June 28, 2015 13:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bedekelly/972425fa7792447e76d5 to your computer and use it in GitHub Desktop.
Save bedekelly/972425fa7792447e76d5 to your computer and use it in GitHub Desktop.
[Failing] Build DarkCrave, including undocumented dependencies
#!/bin/bash
apt-get update && apt-get upgrade -y
apt-get install libboost1.54-dev-all
apt-get install -y qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools \
build-essential libboost-dev libboost-system-dev \
libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
libssl-dev libdb++-dev libminiupnpc-dev libdb++-dev;
git clone https://github.com/DarkCrave/DarkCrave
git clone https://github.com/bitcoin/secp256k1
cd secp256k1
./autogen.sh
./configure
make
sudo make install
cd ../DarkCrave
qmake;
make;
@bedekelly
Copy link
Author

Run this with sudo bash build.sh, preferably in an empty folder.

@bedekelly
Copy link
Author

Build src/key.cpp failing as of 14:33 with what looks like a function trying to cast an int * to an unsigned char *. Relevant build output here.

@johnmatthewkelly
Copy link

Thanks for trying Bede!!! I feel quite proud that I got the same error message as you!!

Lots of love to you & thanks again for trying to help

xx

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment