Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,15 @@ if test "$my_test_DEBUGCOMPILEFLAGS" != set && test "x$enable_debug" = xyes; the
# Sanitizer option.
if test "x$enable_sanitize" = xyes; then
enable_sanitize=
for san in address undefined; do
for san in \
address \
pointer-compare \
pointer-subtract \
undefined \
bounds-strict \
float-divide-by-zero \
float-cast-overflow
do
if test "x$enable_sanitize" = x; then
tmp_sanitize=$san
else
Expand Down
Loading