2016-06-01 01:58:23 +03:00
|
|
|
# GNU Makefile for libmdbx (reliable lightning memory-mapped DB library for Linux).
|
2016-06-06 01:40:41 +03:00
|
|
|
# https://github.com/ReOpen/libmdbx
|
2015-01-07 17:55:19 +03:00
|
|
|
|
|
|
|
########################################################################
|
|
|
|
# Configuration. The compiler options must enable threaded compilation.
|
|
|
|
#
|
2015-11-06 17:26:41 +03:00
|
|
|
# Preprocessor macros (for XCFLAGS) of interest...
|
2015-01-07 17:55:19 +03:00
|
|
|
# Note that the defaults should already be correct for most
|
|
|
|
# platforms; you should not need to change any of these.
|
2016-06-01 01:58:23 +03:00
|
|
|
# Read their descriptions in mdb.c if you do. There may be
|
|
|
|
# other macros of interest. You should read mdb.c
|
|
|
|
# before changing any of them.
|
2015-01-07 17:55:19 +03:00
|
|
|
#
|
2016-06-01 01:58:23 +03:00
|
|
|
|
|
|
|
# install sandbox
|
|
|
|
SANDBOX ?=
|
|
|
|
|
|
|
|
# install prefixes (inside sandbox)
|
2015-12-01 18:45:18 +03:00
|
|
|
prefix ?= /usr/local
|
|
|
|
mandir ?= $(prefix)/man
|
|
|
|
|
2016-06-01 01:58:23 +03:00
|
|
|
# lib/bin suffix for multiarch/biarch, e.g. '.x86_64'
|
|
|
|
suffix ?=
|
|
|
|
|
2015-09-05 02:20:23 +03:00
|
|
|
CC ?= gcc
|
2017-03-30 18:54:57 +03:00
|
|
|
CXX ?= g++
|
2017-05-24 01:42:10 +03:00
|
|
|
XCFLAGS ?= -DNDEBUG=1 -DMDBX_DEBUG=0 -DLIBMDBX_EXPORTS=1
|
2017-03-16 18:09:27 +03:00
|
|
|
CFLAGS ?= -O2 -g3 -Wall -Werror -Wextra -ffunction-sections -fPIC -fvisibility=hidden
|
|
|
|
CFLAGS += -D_GNU_SOURCE=1 -std=gnu99 -pthread $(XCFLAGS)
|
2017-03-30 18:54:57 +03:00
|
|
|
CXXFLAGS = -std=c++11 $(filter-out -std=gnu99,$(CFLAGS))
|
2017-05-23 14:40:37 +03:00
|
|
|
TESTDB ?= /tmp/mdbx-check.db
|
2015-01-07 17:55:19 +03:00
|
|
|
|
2017-04-11 14:37:25 +03:00
|
|
|
# LY: '--no-as-needed,-lrt' for ability to built with modern glibc, but then run with the old
|
|
|
|
LDFLAGS ?= -Wl,--gc-sections,-z,relro,-O,--no-as-needed,-lrt
|
2016-06-01 01:58:23 +03:00
|
|
|
|
|
|
|
# LY: just for benchmarking
|
2016-03-19 21:06:05 +03:00
|
|
|
IOARENA ?= ../ioarena.git/@BUILD/src/ioarena
|
|
|
|
|
2015-01-07 17:55:19 +03:00
|
|
|
########################################################################
|
|
|
|
|
2017-02-21 20:16:54 +03:00
|
|
|
HEADERS := mdbx.h
|
2016-06-01 01:58:23 +03:00
|
|
|
LIBRARIES := libmdbx.a libmdbx.so
|
|
|
|
TOOLS := mdbx_stat mdbx_copy mdbx_dump mdbx_load mdbx_chk
|
2017-02-21 20:16:54 +03:00
|
|
|
MANPAGES := mdbx_stat.1 mdbx_copy.1 mdbx_dump.1 mdbx_load.1
|
2017-05-17 20:25:16 +03:00
|
|
|
SHELL := /bin/bash
|
2015-10-13 15:46:59 +03:00
|
|
|
|
2017-03-30 18:54:57 +03:00
|
|
|
.PHONY: mdbx all install clean check coverage
|
2015-10-13 15:46:59 +03:00
|
|
|
|
2017-03-30 18:54:57 +03:00
|
|
|
all: $(LIBRARIES) $(TOOLS) test/test
|
2015-10-13 15:46:59 +03:00
|
|
|
|
|
|
|
mdbx: libmdbx.a libmdbx.so
|
|
|
|
|
2016-06-01 01:58:23 +03:00
|
|
|
tools: $(TOOLS)
|
|
|
|
|
|
|
|
install: $(LIBRARIES) $(TOOLS) $(HEADERS)
|
|
|
|
mkdir -p $(SANDBOX)$(prefix)/bin$(suffix) \
|
|
|
|
&& cp -t $(SANDBOX)$(prefix)/bin$(suffix) $(TOOLS) && \
|
|
|
|
mkdir -p $(SANDBOX)$(prefix)/lib$(suffix) \
|
|
|
|
&& cp -t $(SANDBOX)$(prefix)/lib$(suffix) $(LIBRARIES) && \
|
|
|
|
mkdir -p $(SANDBOX)$(prefix)/include \
|
|
|
|
&& cp -t $(SANDBOX)$(prefix)/include $(HEADERS) && \
|
|
|
|
mkdir -p $(SANDBOX)$(mandir)/man1 \
|
|
|
|
&& cp -t $(SANDBOX)$(mandir)/man1 $(MANPAGES)
|
2015-01-07 17:55:19 +03:00
|
|
|
|
|
|
|
clean:
|
2017-03-30 18:54:57 +03:00
|
|
|
rm -rf $(TOOLS) test/test @* *.[ao] *.[ls]o *~ tmp.db/* *.gcov *.log *.err
|
2015-10-21 00:04:35 +03:00
|
|
|
|
2017-03-30 18:54:57 +03:00
|
|
|
check: test/test
|
2017-05-23 14:40:37 +03:00
|
|
|
rm -f $(TESTDB) && (set -o pipefail; test/test --pathname=$(TESTDB) --dont-cleanup-after basic | tee test.log | tail -n 42) && ./mdbx_chk -vn $(TESTDB)
|
2015-01-07 17:55:19 +03:00
|
|
|
|
2017-05-24 01:07:15 +03:00
|
|
|
src/%.o: src/%.c mdbx.h mdbx_osal.h $(addprefix src/, defs.h bits.h osal.h midl.h) Makefile
|
|
|
|
$(CC) $(CFLAGS) -c $(filter %.c, $^) -o $@
|
2017-03-16 18:09:27 +03:00
|
|
|
|
2017-05-24 01:07:15 +03:00
|
|
|
libmdbx.a: $(addprefix src/, mdbx.o osal.o lck-posix.o version.o)
|
2017-03-16 18:09:27 +03:00
|
|
|
$(AR) rs $@ $?
|
|
|
|
|
2017-05-24 01:07:15 +03:00
|
|
|
libmdbx.so: libmdbx.a
|
2017-04-11 14:37:25 +03:00
|
|
|
$(CC) $(CFLAGS) -save-temps $^ -pthread -shared $(LDFLAGS) -o $@
|
2015-01-07 17:55:19 +03:00
|
|
|
|
2017-03-16 18:09:27 +03:00
|
|
|
mdbx_%: src/tools/mdbx_%.c libmdbx.a
|
2017-04-11 14:37:25 +03:00
|
|
|
$(CC) $(CFLAGS) $^ $(LDFLAGS) -o $@
|
|
|
|
|
|
|
|
test/%.o: test/%.cc $(wildcard test/*.h) Makefile
|
|
|
|
$(CXX) $(CXXFLAGS) -Isrc -c $(filter %.cc, $^) -o $@
|
2015-01-07 17:55:19 +03:00
|
|
|
|
2017-04-11 14:37:25 +03:00
|
|
|
test/test: $(patsubst %.cc,%.o,$(filter-out test/osal-windows.cc, $(wildcard test/*.cc))) libmdbx.a
|
|
|
|
$(CXX) $(CXXFLAGS) $^ $(LDFLAGS) -o $@
|
2016-03-19 21:06:05 +03:00
|
|
|
|
|
|
|
ifneq ($(wildcard $(IOARENA)),)
|
|
|
|
|
|
|
|
.PHONY: bench clean-bench re-bench
|
|
|
|
|
|
|
|
clean-bench:
|
2016-04-27 17:49:10 +03:00
|
|
|
rm -rf bench-*.txt _ioarena/*
|
2016-03-19 21:06:05 +03:00
|
|
|
|
|
|
|
re-bench: clean-bench bench
|
|
|
|
|
2016-04-27 17:49:10 +03:00
|
|
|
NN := 25000000
|
2016-04-15 21:44:42 +03:00
|
|
|
define bench-rule
|
|
|
|
bench-$(1).txt: $(3) $(IOARENA) Makefile
|
|
|
|
$(IOARENA) -D $(1) -B crud -m nosync -n $(2) | tee $$@ | grep throughput \
|
|
|
|
&& $(IOARENA) -D $(1) -B get,iterate -m sync -r 4 -n $(2) | tee -a $$@ | grep throughput \
|
|
|
|
|| rm -f $$@
|
|
|
|
|
|
|
|
endef
|
2016-03-19 21:06:05 +03:00
|
|
|
|
2016-04-15 21:44:42 +03:00
|
|
|
$(eval $(call bench-rule,mdbx,$(NN),libmdbx.so))
|
2016-03-19 21:06:05 +03:00
|
|
|
|
2016-04-15 21:44:42 +03:00
|
|
|
$(eval $(call bench-rule,dummy,$(NN)))
|
|
|
|
|
|
|
|
$(eval $(call bench-rule,debug,10))
|
|
|
|
|
2017-02-21 20:16:54 +03:00
|
|
|
bench: bench-mdbx.txt
|
2016-03-19 21:06:05 +03:00
|
|
|
|
|
|
|
endif
|
2016-06-09 04:18:01 +03:00
|
|
|
|
2016-08-04 10:41:21 +03:00
|
|
|
ci-rule = ( CC=$$(which $1); if [ -n "$$CC" ]; then \
|
2017-01-07 21:04:00 +03:00
|
|
|
echo -n "probe by $2 ($$(readlink -f $$(which $$CC))): " && \
|
2016-08-25 21:09:06 +03:00
|
|
|
$(MAKE) clean >$1.log 2>$1.err && \
|
2017-05-24 01:42:10 +03:00
|
|
|
$(MAKE) CC=$$(readlink -f $$CC) XCFLAGS="-UNDEBUG -DMDBX_DEBUG=2" all check 1>$1.log 2>$1.err && echo "OK" \
|
2016-06-09 09:00:40 +03:00
|
|
|
|| ( echo "FAILED"; cat $1.err >&2; exit 1 ); \
|
2016-06-09 04:18:01 +03:00
|
|
|
else echo "no $2 ($1) for probe"; fi; )
|
|
|
|
ci:
|
2017-01-07 21:04:00 +03:00
|
|
|
@if [ "$$(readlink -f $$(which $(CC)))" != "$$(readlink -f $$(which gcc || echo /bin/false))" -a \
|
|
|
|
"$$(readlink -f $$(which $(CC)))" != "$$(readlink -f $$(which clang || echo /bin/false))" -a \
|
|
|
|
"$$(readlink -f $$(which $(CC)))" != "$$(readlink -f $$(which icc || echo /bin/false))" ]; then \
|
2016-08-04 10:41:21 +03:00
|
|
|
$(call ci-rule,$(CC),default C compiler); \
|
|
|
|
fi
|
|
|
|
@$(call ci-rule,gcc,GCC)
|
|
|
|
@$(call ci-rule,clang,clang LLVM)
|
|
|
|
@$(call ci-rule,icc,Intel C)
|