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:
Arseny Kapoulkine 2017-10-29 21:24:04 -07:00
parent 0504fa4e90
commit 6fe31d1477

View file

@ -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)