mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 06:44:16 +01:00
7eb67d825b
git-svn-id: file:///svn/toku/tokudb@20400 c7de825b-a66e-492c-adef-691d508d4ae1
182 lines
4.3 KiB
Makefile
182 lines
4.3 KiB
Makefile
# -*- Mode: Makefile -*-
|
|
|
|
.DEFAULT_GOAL= build
|
|
TOKUROOT=../
|
|
INCLUDEDIRS=-I. -I../include
|
|
ifneq ($(COMBINE),0)
|
|
COMBINE=1
|
|
endif
|
|
|
|
#TODO: Replace DEPEND_COMPILE with auto-dependancy generation.
|
|
DEPEND_COMPILE += \
|
|
$(wildcard *.h) \
|
|
log_header.h \
|
|
# keep this line so I can have a \ on the previous line
|
|
|
|
NEWBRT = newbrt.$(AEXT)
|
|
IPO_NEWBRT = ipo_newbrt.$(AEXT)
|
|
NEWBRT_BUNDLE = newbrt.bundle
|
|
#All executables need to statically link to newbrt
|
|
LINK_FILES += $(NEWBRT)
|
|
|
|
SKIP_NEWBRTRULE=1
|
|
include $(TOKUROOT)toku_include/Makefile.include
|
|
|
|
# When debugging, try: valgrind --show-reachable=yes --leak-check=full ./brt-test
|
|
|
|
BINS_RAW= \
|
|
brtdump \
|
|
tdb_logprint \
|
|
tdb-recover \
|
|
# Intentionally left blank
|
|
# BINS will be defined automatically.
|
|
|
|
BINS_O = $(patsubst %,%.$(OEXT),$(BINS_RAW))
|
|
|
|
.PHONY: build default bins libs local
|
|
|
|
build default: local
|
|
cd tests;$(MAKE) build
|
|
|
|
local: bins libs $(TEST_NEWBRT);
|
|
|
|
|
|
BRT_SOURCES = \
|
|
block_allocator \
|
|
block_table \
|
|
brtloader-callback \
|
|
brt-serialize \
|
|
brt-verify \
|
|
brt \
|
|
brt_msg \
|
|
brt-test-helpers \
|
|
cachetable \
|
|
checkpoint \
|
|
dbufio \
|
|
fifo \
|
|
fingerprint \
|
|
key \
|
|
leafentry \
|
|
leaflock \
|
|
logfilemgr \
|
|
logger \
|
|
log_code \
|
|
log_print \
|
|
logcursor \
|
|
memarena \
|
|
mempool \
|
|
minicron \
|
|
omt \
|
|
pqueue \
|
|
queue \
|
|
recover \
|
|
roll \
|
|
rollback \
|
|
sub_block \
|
|
ule \
|
|
threadpool \
|
|
toku_worker \
|
|
txn \
|
|
x1764 \
|
|
xids \
|
|
ybt \
|
|
# keep this line so I can have a \ on the previous line
|
|
ifneq ($(OS_CHOICE),windows)
|
|
BRT_SOURCES += trace_mem #Windows does not handle 'empty' file
|
|
endif
|
|
|
|
|
|
TEST_NEWBRT = brt-test-helpers.$(OEXT)
|
|
|
|
BRT_C_FILES = $(patsubst %,%.c,$(BRT_SOURCES))
|
|
BRT_O_FILES = $(patsubst %,%.$(OEXT),$(BRT_SOURCES))
|
|
|
|
newbrt.$(OEXT): $(BRT_C_FILES) $(DEPEND_COMPILE)
|
|
$(CC) -c $(BRT_C_FILES) $(COMBINE_C) $(CPPFLAGS) $(CFLAGS) $(OOUTPUT)$@
|
|
|
|
ifneq ($(CYGWIN),)
|
|
NEWBRT_O_FILES = $(BRT_O_FILES)
|
|
else ifeq ($(CC),icc)
|
|
NEWBRT_O_FILES = $(BRT_O_FILES)
|
|
else ifeq ($(COMBINE),0)
|
|
NEWBRT_O_FILES = $(BRT_O_FILES)
|
|
else
|
|
NEWBRT_O_FILES = newbrt.o
|
|
endif
|
|
|
|
NEWBRT_O_FILES += brtloader.$(OEXT)
|
|
|
|
brtloader.$(OEXT): $(DEPEND_COMPILE)
|
|
ifeq ($(BRTLOADER),cilk)
|
|
brtloader.$(OEXT): brtloader.c
|
|
$(CILKPP) -DTOKU_ALLOW_DEPRECATED $(CILKFLAGS) -c $<
|
|
endif
|
|
ifeq ($(BRTLOADER),cxx)
|
|
brtloader.$(OEXT): brtloader.c
|
|
$(CXX) -DTOKU_ALLOW_DEPRECATED $(CXXFLAGS) -c $<
|
|
endif
|
|
|
|
$(NEWBRT): $(NEWBRT_O_FILES)
|
|
|
|
$(NEWBRT_BUNDLE): log_code.c log_header.h
|
|
|
|
ipo_newbrt.obj: $(NEWBRT_BUNDLE)
|
|
$(CC) $(CFLAGS) $(CPPFLAGS) -Qipo-c $(filter %.$(OEXT),$^) $(patsubst %.bundle, %.bundle/*.$(OEXT), $(filter-out %.$(OEXT),$^))
|
|
mv ipo_out.obj $@
|
|
|
|
$(IPO_NEWBRT): ipo_newbrt.obj
|
|
xilib /out:$@ $^
|
|
|
|
log_code.$(OEXT): log_header.h wbuf.h log-internal.h rbuf.h
|
|
|
|
# This version runs logformat twice. There is something screwing in make that if you have a pattern form with two outputs
|
|
# then it runs the thing only once, but if it has no % symbols it runs it twice.
|
|
## log_header.h log_code.c: logformat$(BINSUF)
|
|
## ./logformat
|
|
# So we do it this way
|
|
log_code.c: logformat$(BINSUF)
|
|
./logformat .
|
|
log_print.c log_header.h: log_code.c
|
|
test 1 = 1
|
|
|
|
#Needs to be done manually since it does not include newbrt.
|
|
logformat$(BINSUF): logformat.c $(LIBPORTABILITY)
|
|
$(CC) $< $(BIN_FROM_O_FLAGS_NOLIB) $(ALWAYS_LINK) $(LINK_MUST_BE_LAST)
|
|
|
|
|
|
libs: $(NEWBRT) $(NEWBRT_BUNDLE)
|
|
bins: $(BINS)
|
|
|
|
# Put the benchmarktest_256 first since it takes the longest (and we want to use parallelism in the make)
|
|
|
|
# Put check_benchmarktest_256 first because it is long-running (and therefore on the critical path, so get it started)
|
|
check: bins
|
|
cd tests;$(MAKE) check
|
|
|
|
%$(BINSUF): $(NEWBRT) $(LIBPORTABILITY)
|
|
|
|
checko2: SHELL=/bin/bash
|
|
checko2:
|
|
@shopt -s compat31; if [[ "$(OPTFLAGS)" =~ "-O([2-3x])" ]] ; then \
|
|
echo OPTFLAGS=$(OPTFLAGS) ok; \
|
|
else \
|
|
echo OPTFLAGS=$(OPTFLAGS) bad; exit 1; \
|
|
fi
|
|
|
|
clean: clean-local clean-tests
|
|
clean-tests:
|
|
cd tests;$(MAKE) clean
|
|
clean-local:
|
|
rm -rf $(NEWBRT)
|
|
rm -rf test_oexcl.c.tmp *.brt
|
|
rm -rf log_code.c log_header.h log_print.c logformat
|
|
|
|
# After doing (cd ../src/tests;make test_log5.recover), run these. The files should have no differences.
|
|
testdump: brtdump$(BINSUF)
|
|
./brtdump ../src/tests/dir.test_log5.c.tdb.recover/foo.db > dump.r && ./brtdump ../src/tests/dir.test_log5.c.tdb/foo.db > dump.$(OEXT) && diff dump.$(OEXT) dump.r
|
|
|
|
foo:
|
|
@echo CILKROOT $(CILKROOT)
|
|
@echo CILKPP $(CILKPP)
|
|
@echo BRTLOADER $(BRTLOADER)
|
|
@echo BDBDIR $(BDBDIR)
|