build: Simplify config=sanitize
These days OSX clang supports UB sanitizer so we can just use the same settings for all systems.
This commit is contained in:
parent
0504fa4e90
commit
6fe31d1477
1 changed files with 2 additions and 7 deletions
9
Makefile
9
Makefile
|
@ -27,13 +27,8 @@ ifeq ($(config),coverage)
|
|||
endif
|
||||
|
||||
ifeq ($(config),sanitize)
|
||||
CXXFLAGS+=-fsanitize=address
|
||||
LDFLAGS+=-fsanitize=address
|
||||
|
||||
ifneq ($(shell uname),Darwin)
|
||||
CXXFLAGS+=-fsanitize=undefined
|
||||
LDFLAGS+=-fsanitize=undefined
|
||||
endif
|
||||
CXXFLAGS+=-fsanitize=address,undefined
|
||||
LDFLAGS+=-fsanitize=address,undefined
|
||||
endif
|
||||
|
||||
ifeq ($(config),analyze)
|
||||
|
|
Loading…
Add table
Reference in a new issue