Skip to content

Commit 88934bc

Browse files
committed
Cleanup of the fuse filter #19
1 parent 527a239 commit 88934bc

21 files changed

+5385
-1067
lines changed

benchmarks/Makefile

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
2+
13
# Uncomment one of the following to switch between debug and opt mode
2-
OPT = -O3 -DNDEBUG
3-
#OPT = -g -ggdb
4+
OPT = -O3 -DNDEBUG -std=c++17
5+
#OPT = -g -ggdb -fsanitize=address -fno-omit-frame-pointer -Wextra -fsanitize=undefined
46

57
CXXFLAGS += -fno-strict-aliasing -Wall -std=c++11 -I. -I../src/ \
68
-I../src/bloom/ -I../src/cuckoo/ -I../src/gcs \
@@ -13,17 +15,16 @@ ifeq ($(UNAME_P),x86_64)
1315
else
1416
CXXFLAGS +=
1517
endif
16-
17-
LDFLAGS = -Wall
18+
LDFLAGS = -Wall -Wextra
1819

1920
HEADERS = $(wildcard ../src/*.h \
2021
../src/bloom/*.h ../src/cuckoo/*.h ../src/gcs/*.h \
21-
../src/gqf/*.h ../src/morton/*.h ../src/xorfilter/*.h \
22+
../src/gqf/*.h ../src/morton/*.h ../src/xorfilter/*.h ../src/ribbon/*.h \
2223
) *.h
2324

2425
.PHONY: all
2526

26-
BINS = bulk-insert-and-query.exe
27+
BINS = bulk-insert-and-query.exe stream.exe construction-failure.exe
2728

2829
all: $(BINS)
2930

0 commit comments

Comments
 (0)