diff options
author | tg(x) <*@tg-x.net> | 2016-11-30 20:18:34 +0100 |
---|---|---|
committer | tg(x) <*@tg-x.net> | 2016-11-30 20:18:34 +0100 |
commit | 1664918f43b467a76caa3aa96a1646302fdc1b2b (patch) | |
tree | 53dc9ad6bf25267e17c49850b92904493c5c47e0 /configure.ac | |
parent | 2d43140784dfa83e593e5c1259be229d3997aed2 (diff) |
configure: -fsanitize-recovery is on by default, removing it for compatibility
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index ad62d46939..ebe5753aaa 100644 --- a/configure.ac +++ b/configure.ac @@ -272,7 +272,7 @@ fi]) AC_ARG_ENABLE(sanitizer, AS_HELP_STRING(--enable-sanitizer, enable Address Sanitizer and Undefined Behavior Sanitizer), [if test x$enableval = xyes; then - LDFLAGS="$CFLAGS -fsanitize=address,undefined -fsanitize-recover=all -fno-omit-frame-pointer" + LDFLAGS="$CFLAGS -fsanitize=address,undefined -fno-omit-frame-pointer" fi]) |