X-Git-Url: https://pd.if.org/git/?p=nbds;a=blobdiff_plain;f=makefile;h=b7649ed5fe31b339bd13888a3cecd9b6cf58feae;hp=92aa921eb3c97d36607631ca1590452e46b6c58d;hb=2b107655a1df8ae7703b44ef8cf1430a7250a5c3;hpb=c7c053b290f15b7c8ba4f7327ead5a6fe836ec80 diff --git a/makefile b/makefile index 92aa921..b7649ed 100644 --- a/makefile +++ b/makefile @@ -4,15 +4,18 @@ ################################################################################################### # Makefile for building programs with whole-program interfile optimization ################################################################################################### -OPT := -fwhole-program -combine -03 #-DNDEBUG -CFLAGS := -g -Wall -Werror -std=c99 $(OPT) -m64 #-DNBD32 #-DENABLE_TRACE -INCS := $(addprefix -I, include) -TESTS := output/map_test1 output/map_test2 output/txn_test -EXES := $(TESTS) +CFLAGS0 := -g -Wall -Werror -std=c99 -lpthread +CFLAGS1 := $(CFLAGS0) -O3 #-DNDEBUG #-DENABLE_TRACE #-fwhole-program -combine +CFLAGS := $(CFLAGS1) -DUSE_SYSTEM_MALLOC #-DLIST_USE_HAZARD_POINTER #-DTEST_STRING_KEYS #-DNBD32 +INCS := $(addprefix -I, include) +TESTS := output/rcu_test output/haz_test output/map_test2 output/map_test1 output/txn_test +EXES := $(TESTS) -RUNTIME_SRCS := runtime/runtime.c runtime/rcu.c runtime/lwt.c runtime/mem.c datatype/nstring.c +RUNTIME_SRCS := runtime/runtime.c runtime/rcu.c runtime/lwt.c runtime/mem.c datatype/nstring.c \ + runtime/hazard.c MAP_SRCS := map/map.c map/list.c map/skiplist.c map/hashtable.c +haz_test_SRCS := $(RUNTIME_SRCS) test/haz_test.c rcu_test_SRCS := $(RUNTIME_SRCS) test/rcu_test.c txn_test_SRCS := $(RUNTIME_SRCS) $(MAP_SRCS) test/txn_test.c test/CuTest.c txn/txn.c map_test1_SRCS := $(RUNTIME_SRCS) $(MAP_SRCS) test/map_test1.c @@ -47,7 +50,7 @@ asm: $(addsuffix .s, $(EXES)) $(addsuffix .s, $(EXES)): output/%.s : output/%.d makefile gcc $(CFLAGS:-combine:) $(INCS) -MM -MT $@ $($*_SRCS) > output/$*.d - gcc $(CFLAGS) $(INCS) -S -o $@.temp $($*_SRCS) + gcc $(CFLAGS) $(INCS) -combine -S -o $@.temp $($*_SRCS) grep -v "^L[BFM]\|^LCF" $@.temp > $@ rm $@.temp