diff options
Diffstat (limited to 'gdb')
-rwxr-xr-x | gdb/configure | 1 | ||||
-rw-r--r-- | gdb/sanitize.m4 | 6 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/configure b/gdb/configure index a08c8c5..aa89158 100755 --- a/gdb/configure +++ b/gdb/configure @@ -16655,6 +16655,7 @@ if ac_fn_cxx_try_link "$LINENO"; then : enable_ubsan=yes else enable_ubsan=no + fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext diff --git a/gdb/sanitize.m4 b/gdb/sanitize.m4 index 78d0070..87a4f3c 100644 --- a/gdb/sanitize.m4 +++ b/gdb/sanitize.m4 @@ -34,7 +34,11 @@ if test "x$enable_ubsan" = xyes; then dnl A link check is required because it is possible to install gcc dnl without libubsan, leading to link failures when compiling with dnl -fsanitize=undefined. - AC_TRY_LINK([],[],enable_ubsan=yes,enable_ubsan=no) + AC_LINK_IFELSE( + [AC_LANG_PROGRAM([], [])], + [enable_ubsan=yes], + [enable_ubsan=no] + ) CXXFLAGS="$saved_CXXFLAGS" AC_MSG_RESULT($enable_ubsan) if test "x$enable_ubsan" = xyes; then |