Post
Topic
Board Announcements (Altcoins)
Re: [ANN] CRAVE 0.52M, Dark Assets = Embrace The Dark = MASTERNODE HARDFORK APR 8
by
fnz
on 11/04/2015, 15:35:09 UTC
I'm trying to compile crave in a linux machine. It gives me a bunch of errors regarding libsecp256k1, like:

error: ‘SECP256K1_START_SIGN’ was not declared in this scope.
What version of secp256k1 they use? Not the latest for sure.


For the love of God can someone help me compile the wallet on Linux and set up a masternode?! A comprehensive guide, video, something? I'm about to head to YouTube. Is Sologap still around or whatever his name is?

Code:
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev automake libdb++-dev libssl-dev git
Code:
sudo aptitude install libminiupnpc-dev
Code:
git clone https://github.com/bitcoin/secp256k1
cd secp256k1
./autogen.sh
./configure
make
sudo make install
cd ..
ldconfig
wget http://104.207.135.209/craved
chmod 777 craved

I'm trying to compile crave (https://github.com/industrialcoinmagic/crave) and not use this binary


same thing just dot wget the binary  Grin , ocminer have reported a problem after secp256k1 updated thier repo. you can try.

Code:
git clone https://github.com/bitcoin/secp256k1
cd secp256k1
./autogen.sh
./configure
make
sudo make install
cd ..
ldconfig

Just reset secp256 to a version that works so:
Code:
git clone https://github.com/bitcoin/secp256k1
cd secp256k1
git reset a0d3b8
./autogen.sh
./configure
make
sudo make install
cd ..
ldconfig