Post
Topic
Board Development & Technical Discussion
Re: Building headless Bitcoin and Bitcoin-qt on Windows
by
Cassey
on 24/03/2014, 22:41:11 UTC
Ok I have figured all the other errors out and now I am just getting the following, anyone able to help with this, be appreciated

Code:
C:\JennyCoin>mingw32-make -f Makefile.Release
mingw32-make: *** No rule to make target 'c:/JennyCoin/src/leveldb/libleveldb.a', needed by 'release\JennyCoin-qt.exe'.
 Stop.

C:\JennyCoin>

Open a MinGW window and:

cd /JennyCoin/src/leveldb
TARGET_OS=NATIVE_WINDOWS make libleveldb.a libmemenv.a

Then...

cd ../..
qmake JennyCoin-qt.pro
mingw32-make -f Makefile.Release

qmake doesn't work inside of mingw seems like every step I get further in I run into another problem

Fortunately your near the end of the path... (pun intended).  [You need to add QT/bin to the end of your PATH variable]

If you prefer, just do the qmake from a windows command prompt or whatever environment you had it running it before.  The key is to build the libleveldb and libmemenv first as shown in the example.