From: Nicolas Williams Date: Sun, 17 Jan 2016 18:09:43 +0000 (-0600) Subject: Add --enable-ubsan (undefined behavior sanitizer) X-Git-Tag: jq-1.6rc1~109 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=refs%2Fpull%2F1081%2Fhead;p=jq Add --enable-ubsan (undefined behavior sanitizer) --- diff --git a/Makefile.am b/Makefile.am index 8a6ace4..2a3aded 100644 --- a/Makefile.am +++ b/Makefile.am @@ -56,6 +56,10 @@ endif include_HEADERS = src/jv.h src/jq.h +if ENABLE_UBSAN +AM_CFLAGS += -fsanitize=undefined +endif + ### Running tests under Valgrind if ENABLE_ASAN diff --git a/configure.ac b/configure.ac index 03aa71d..4f64082 100644 --- a/configure.ac +++ b/configure.ac @@ -95,6 +95,10 @@ dnl faster. AC_ARG_ENABLE([asan], AC_HELP_STRING([--enable-asan], [enable address sanitizer])) +dnl Undefined Behavior Sanitizer +AC_ARG_ENABLE([ubsan], + AC_HELP_STRING([--enable-ubsan], [enable undefined behavior sanitizer])) + dnl Code coverage AC_ARG_ENABLE([gcov], AC_HELP_STRING([--enable-gcov], [enable gcov code coverage tool])) @@ -137,6 +141,7 @@ EOF AM_CONDITIONAL([ENABLE_VALGRIND], [test "x$enable_valgrind" != xno]) AM_CONDITIONAL([ENABLE_ASAN], [test "x$enable_asan" = xyes]) +AM_CONDITIONAL([ENABLE_UBSAN], [test "x$enable_ubsan" = xyes]) AM_CONDITIONAL([ENABLE_GCOV], [test "x$enable_gcov" = xyes]) AM_CONDITIONAL([ENABLE_DOCS], [test "x$enable_docs" != xno]) AM_CONDITIONAL([ENABLE_ERROR_INJECTION], [test "x$enable_error_injection" = xyes])