mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2024-10-01 01:36:01 -04:00
enable more tidy checks
This commit is contained in:
parent
9ea2fd6667
commit
3c0a448c3e
4
Makefile
4
Makefile
@ -5,6 +5,8 @@ SHARED_FLAGS := -O2 -flto -fPIC -fvisibility=hidden -fno-plt -pipe -Wall -Wextra
|
|||||||
CFLAGS := -std=c11 $(SHARED_FLAGS) -Wmissing-prototypes
|
CFLAGS := -std=c11 $(SHARED_FLAGS) -Wmissing-prototypes
|
||||||
CXXFLAGS := -std=c++14 $(SHARED_FLAGS)
|
CXXFLAGS := -std=c++14 $(SHARED_FLAGS)
|
||||||
LDFLAGS := -Wl,-z,defs,-z,relro,-z,now,-z,nodlopen,-z,text
|
LDFLAGS := -Wl,-z,defs,-z,relro,-z,now,-z,nodlopen,-z,text
|
||||||
|
TIDY_CHECKS := -checks=bugprone-*,-bugprone-macro-parentheses,cert-*,clang-analyzer-*,readability-*,-readability-braces-around-statements,-readability-else-after-return,-readability-inconsistent-declaration-parameter-name,-readability-named-parameter
|
||||||
|
|
||||||
SOURCES := chacha.c malloc.c memory.c pages.c random.c util.c
|
SOURCES := chacha.c malloc.c memory.c pages.c random.c util.c
|
||||||
OBJECTS := $(SOURCES:.c=.o)
|
OBJECTS := $(SOURCES:.c=.o)
|
||||||
|
|
||||||
@ -26,7 +28,7 @@ random.o: random.c random.h chacha.h util.h
|
|||||||
util.o: util.c util.h
|
util.o: util.c util.h
|
||||||
|
|
||||||
tidy:
|
tidy:
|
||||||
clang-tidy $(SOURCES) -- $(CPPFLAGS)
|
clang-tidy $(TIDY_CHECKS) $(SOURCES) -- $(CPPFLAGS)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f hardened_malloc.so $(OBJECTS)
|
rm -f hardened_malloc.so $(OBJECTS)
|
||||||
|
Loading…
Reference in New Issue
Block a user