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/QubitCoincd QubitCoin/src
chmod +x leveldb/build_detect_platform
cd leveldb
make libleveldb.a libmemenv.a
make
cd ..
make -f makefile.unix "USE_UPNP=-"
----------------------------------------------