Undo always enabling clang sanitize

We are not ready, just yet, to enable:

    -fsanitize=undefined -fsanitize=address

Instead we need to test with:

    make clobber all check COMMON_ADD='-fsanitize=undefined -fsanitize=address'

Once the regression test passes, we can consider how to use COMMON_ADD
during development.
This commit is contained in:
Landon Curt Noll
2017-05-23 02:18:51 -07:00
parent 4d9511243c
commit 62bdba6d22

View File

@@ -124,7 +124,7 @@ CCWERR= -Werror -Wextra -pedantic
################################# #################################
ifeq ($(target),Darwin) ifeq ($(target),Darwin)
COMMON_ADD= -fsanitize=undefined -fsanitize=address COMMON_ADD=
else else
COMMON_ADD= COMMON_ADD=
endif endif