Add configure option to enable MemorySanitizer
authorFabian Keil <fk@fabiankeil.de>
Sat, 6 Feb 2021 19:19:10 +0000 (20:19 +0100)
committerFabian Keil <fk@fabiankeil.de>
Sun, 21 Mar 2021 06:58:53 +0000 (07:58 +0100)
configure.in

index 6b7f944..07f2fd9 100644 (file)
@@ -168,6 +168,12 @@ if test "x$with_asan" = "xyes"; then
     LDFLAGS="$LDFLAGS -fsanitize=address"
 fi
 
+AC_ARG_WITH(asan, [  --with-msan       Enable MemorySanitizer. Requires compiler support.])
+if test "x$with_msan" = "xyes"; then
+    CFLAGS="$CFLAGS -fsanitize=memory"
+    LDFLAGS="$LDFLAGS -fsanitize=memory"
+fi
+
 AC_ARG_WITH(usan, [  --with-usan       Enable UndefinedBehaviorSanitizer. Requires compiler support.])
 if test "x$with_usan" = "xyes"; then
     CFLAGS="$CFLAGS -fsanitize=undefined"