mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-19 23:03:45 +01:00
Makefile integration of LevelDB
This commit is contained in:
@@ -6,6 +6,7 @@ DEPSDIR:=/usr/i586-mingw32msvc
|
||||
|
||||
USE_UPNP:=0
|
||||
USE_IPV6:=1
|
||||
USE_LEVELDB:=1
|
||||
|
||||
INCLUDEPATHS= \
|
||||
-I"$(CURDIR)" \
|
||||
@@ -86,6 +87,15 @@ OBJS= \
|
||||
|
||||
all: bitcoind.exe
|
||||
|
||||
ifdef USE_LEVELDB
|
||||
LIBS += $(CURDIR)/leveldb/libleveldb.lib $(CURDIR)/leveldb/libmemenv.a
|
||||
DEFS += -I"$(CURDIR)/leveldb/include" -DUSE_LEVELDB
|
||||
DEFS += -I"$(CURDIR)/leveldb/helpers"
|
||||
leveldb/libleveldb.a:
|
||||
@echo "Building LevelDB ..."; cd leveldb; TARGET_OS=OS_WINDOWS_CROSSCOMPILE CXXFLAGS="-I$(INCLUDEPATHS)" LDFLAGS="-L$(LIBPATHS)" make libleveldb.a libmemenv.a; cd ..
|
||||
obj/db.o: leveldb/libleveldb.a
|
||||
endif
|
||||
|
||||
obj/build.h: FORCE
|
||||
/bin/sh ../share/genbuild.sh obj/build.h
|
||||
version.cpp: obj/build.h
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
USE_UPNP:=0
|
||||
USE_IPV6:=1
|
||||
USE_LEVELDB:=1
|
||||
|
||||
INCLUDEPATHS= \
|
||||
-I"C:\boost-1.50.0-mgw" \
|
||||
@@ -86,6 +87,18 @@ all: bitcoind.exe
|
||||
test check: test_bitcoin.exe FORCE
|
||||
test_bitcoin.exe
|
||||
|
||||
#
|
||||
# LevelDB support
|
||||
#
|
||||
ifdef USE_LEVELDB
|
||||
LIBS += $(CURDIR)/leveldb/libleveldb.a $(CURDIR)/leveldb/libmemenv.a
|
||||
DEFS += $(addprefix -I,$(CURDIR)/leveldb/include) -DUSE_LEVELDB
|
||||
DEFS += $(addprefix -I,$(CURDIR)/leveldb/helpers)
|
||||
leveldb/libleveldb.a:
|
||||
cd leveldb; make libleveldb.a libmemenv.a; cd ..
|
||||
obj/db.o: leveldb/libleveldb.lib
|
||||
endif
|
||||
|
||||
obj/%.o: %.cpp $(HEADERS)
|
||||
g++ -c $(CFLAGS) -o $@ $<
|
||||
|
||||
|
||||
@@ -21,6 +21,7 @@ LIBPATHS= \
|
||||
|
||||
USE_UPNP:=1
|
||||
USE_IPV6:=1
|
||||
USE_LEVELDB:=1
|
||||
|
||||
LIBS= -dead_strip
|
||||
|
||||
@@ -119,6 +120,18 @@ all: bitcoind
|
||||
test check: test_bitcoin FORCE
|
||||
./test_bitcoin
|
||||
|
||||
#
|
||||
# LevelDB support
|
||||
#
|
||||
ifdef USE_LEVELDB
|
||||
LIBS += $(CURDIR)/leveldb/libleveldb.a $(CURDIR)/leveldb/libmemenv.a
|
||||
DEFS += $(addprefix -I,$(CURDIR)/leveldb/include) -DUSE_LEVELDB
|
||||
DEFS += $(addprefix -I,$(CURDIR)/leveldb/helpers)
|
||||
leveldb/libleveldb.a:
|
||||
@echo "Building LevelDB ..."; cd leveldb; make libleveldb.a libmemenv.a; cd ..
|
||||
obj/db.o: leveldb/libleveldb.a
|
||||
endif
|
||||
|
||||
# auto-generated dependencies:
|
||||
-include obj/*.P
|
||||
-include obj-test/*.P
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
USE_UPNP:=0
|
||||
USE_IPV6:=1
|
||||
USE_LEVELDB:=1
|
||||
|
||||
LINK:=$(CXX)
|
||||
|
||||
@@ -135,6 +136,18 @@ all: bitcoind
|
||||
test check: test_bitcoin FORCE
|
||||
./test_bitcoin
|
||||
|
||||
#
|
||||
# LevelDB support
|
||||
#
|
||||
ifdef USE_LEVELDB
|
||||
LIBS += $(CURDIR)/leveldb/libleveldb.a $(CURDIR)/leveldb/libmemenv.a
|
||||
DEFS += $(addprefix -I,$(CURDIR)/leveldb/include) -DUSE_LEVELDB
|
||||
DEFS += $(addprefix -I,$(CURDIR)/leveldb/helpers)
|
||||
leveldb/libleveldb.a:
|
||||
@echo "Building LevelDB ..."; cd leveldb; make libleveldb.a libmemenv.a; cd ..;
|
||||
obj/db.o: leveldb/libleveldb.a
|
||||
endif
|
||||
|
||||
# auto-generated dependencies:
|
||||
-include obj/*.P
|
||||
-include obj-test/*.P
|
||||
|
||||
Reference in New Issue
Block a user