Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Shell Coin [Bittrex_Yobit_C-cex][Masternode Android Wallet Released]
by
danbhfd
on 03/06/2015, 11:55:52 UTC
I had this problem as well and was ready to scratch my eye balls out.  The fix is so stupid easy it will make you want to punt a puppy.

First delete all you have done and start from scratch.

Code:
git clone https://github.com/bitcoin/secp256k1
git clone https://bitbucket.org/shellnode/shell

First build libsecp256k1
Code:
./autogen.sh
./configure
make
./tests
sudo make install
sudo ldconfig
LD_LIBRARY_PATH=/usr/local/lib
export LD_LIBRARY_PATH
The last three commands are the ones that make the magic happen.

Next, lets build Shell
I had to chmod my build_detect_platform file soooo....do this.

Code:
cd /src/leveldb
chmod +x build_detect_platform

Code:
qmake
make

or for headless

Code:
cd src
copy /shell/src/crypto folder to /shell/src/obj
make -f makefile.unix

Hope this helps.  Still kind of a linux newb...