More sanitiziers
Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
parent
8be2cbf1a5
commit
cb99618eb6
8
Makefile
8
Makefile
|
@ -113,9 +113,11 @@ else ifeq "$(BUILD_TYPE)" "Debug"
|
|||
endif
|
||||
|
||||
ifeq "$(ENABLE_SAN)" "1"
|
||||
CFG += -fsanitize=address,undefined
|
||||
else ifeq "$(ENABLE_SAN)" "thread"
|
||||
CFG += -fsanitize=thread
|
||||
ifeq "$(CC)" "clang"
|
||||
CFG += -fsanitize=address,undefined,integer,nullability
|
||||
else
|
||||
CFG += -fsanitize=address,undefined
|
||||
endif
|
||||
else ifeq "$(ENABLE_SAN)" "memory"
|
||||
CFG += -fsanitize=memory
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue