From b838b40a431b18b7091369e597218b049efa11f8 Mon Sep 17 00:00:00 2001 From: Takahiro Ueda Date: Sat, 22 Aug 2026 20:50:49 +0900 Subject: [PATCH] build(configure): enable more sanitizers with --enable-sanitize --- configure.ac | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index d40185a5..d2549b0d 100644 --- a/configure.ac +++ b/configure.ac @@ -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