Post
Topic
Board Announcements (Altcoins)
Re: [ANN][QBT- QubitCoin] Qubit - new secure hashing (cpu only)
by
miraxgr
on 15/01/2014, 12:10:26 UTC
so many error

chmod a+x ./leveldb/build_detect_platform
mkdir obj

git clone ...
cd QubitCoin/src
chmod a+x leveldb/build_detect_platform
mkdir obj
cd leveldb
make
cd ..
make -f makefile.unix USE_UPNP=-

.... i become a error


.... pthread /root/QubitCoin/src/leveldb/libleveldb.a /root/QubitCoin/src/leveldb/libmemenv.a
g++: error: /root/QubitCoin/src/leveldb/libmemenv.a: No such file or directory
make: *** [QubitCoind] Error 1



any way to fix this?

I solved this problem as follows:

----------------------------------------------
git clone http://github.com/qubitcoin/QubitCoin
cd QubitCoin/src
chmod +x leveldb/build_detect_platform
cd leveldb
make libleveldb.a libmemenv.a
make
cd ..
make -f makefile.unix "USE_UPNP=-"
----------------------------------------------