hardened_malloc/Makefile

52 lines
1.6 KiB
Makefile
Raw Normal View History

CONFIG_CXX_ALLOCATOR := true
CONFIG_UBSAN := false
CONFIG_SEAL_METADATA := false
define safe_flag
$(shell $(CC) -E $1 - </dev/null >/dev/null 2>&1 && echo $1)
endef
2018-08-21 19:23:22 +00:00
CPPFLAGS := -D_GNU_SOURCE
SHARED_FLAGS := -O2 -flto -fPIC -fvisibility=hidden -fno-plt -pipe -Wall -Wextra $(call safe_flag,-Wcast-align=strict) -Wcast-qual -Wwrite-strings
CFLAGS := -std=c11 $(SHARED_FLAGS) -Wmissing-prototypes
CXXFLAGS := -std=c++14 $(SHARED_FLAGS)
2018-09-02 06:27:49 +00:00
LDFLAGS := -Wl,-z,defs,-z,relro,-z,now,-z,nodlopen,-z,text
2018-10-19 21:07:30 +00:00
TIDY_CHECKS := -checks=bugprone-*,-bugprone-macro-parentheses,cert-*,clang-analyzer-*,readability-*,-readability-else-after-return,-readability-inconsistent-declaration-parameter-name,-readability-named-parameter
2018-10-14 22:33:40 +00:00
SOURCES := chacha.c malloc.c memory.c pages.c random.c util.c
OBJECTS := $(SOURCES:.c=.o)
2018-08-21 19:23:22 +00:00
ifeq ($(CONFIG_CXX_ALLOCATOR),true)
LDLIBS += -lstdc++
SOURCES += new.cc
OBJECTS += new.o
endif
ifeq ($(CONFIG_UBSAN),true)
CFLAGS += -fsanitize=undefined
CXXFLAGS += -fsanitize=undefined
endif
ifeq ($(CONFIG_SEAL_METADATA),true)
CPPFLAGS += -DCONFIG_SEAL_METADATA
endif
2018-08-21 19:23:22 +00:00
hardened_malloc.so: $(OBJECTS)
$(CC) $(CFLAGS) $(LDFLAGS) -shared $^ $(LDLIBS) -o $@
2018-10-07 15:28:50 +00:00
chacha.o: chacha.c chacha.h util.h
malloc.o: malloc.c malloc.h config.h mutex.h memory.h pages.h random.h util.h
memory.o: memory.c memory.h util.h
2018-10-07 15:28:50 +00:00
new.o: new.cc malloc.h util.h
2018-09-02 06:03:27 +00:00
pages.o: pages.c pages.h memory.h util.h
2018-08-26 03:00:00 +00:00
random.o: random.c random.h chacha.h util.h
2018-08-21 19:23:22 +00:00
util.o: util.c util.h
tidy:
2018-10-14 22:33:40 +00:00
clang-tidy $(TIDY_CHECKS) $(SOURCES) -- $(CPPFLAGS)
2018-08-21 19:23:22 +00:00
clean:
rm -f hardened_malloc.so $(OBJECTS)
.PHONY: clean tidy