diff options
author | Matt Corallo <git@bluematt.me> | 2012-10-28 22:33:35 -0400 |
---|---|---|
committer | Matt Corallo <git@bluematt.me> | 2012-10-29 15:43:18 -0400 |
commit | 38fe2e6a68e94e262ab8a0d0370f3a6f042ee3db (patch) | |
tree | 546722ded7aedd053dfcca1b0a30a9385e43c650 /src/makefile.mingw | |
parent | 325a064c68cfd340903573987da2809b450d4983 (diff) |
Add missing calls to ranlib in Windows makefiles
Diffstat (limited to 'src/makefile.mingw')
-rw-r--r-- | src/makefile.mingw | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/makefile.mingw b/src/makefile.mingw index a6008fa636..85d63e9ceb 100644 --- a/src/makefile.mingw +++ b/src/makefile.mingw @@ -94,6 +94,7 @@ test check: test_bitcoin.exe FORCE LIBS += $(CURDIR)/leveldb/libleveldb.a $(CURDIR)/leveldb/libmemenv.a DEFS += $(addprefix -I,$(CURDIR)/leveldb/include) DEFS += $(addprefix -I,$(CURDIR)/leveldb/helpers) +# TODO: If this fails, try adding a ranlib libleveldb.a && ranlib libmemenv.a leveldb/libleveldb.a: cd leveldb && make libleveldb.a libmemenv.a && cd .. obj/leveldb.o: leveldb/libleveldb.lib |