From: Simon Marchi Date: Sat, 31 Oct 2020 12:31:00 +0000 (-0400) Subject: gdb: replace AC_TRY_LINK in sanitize.m4 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ad6dba1cea202de44f7f4597a73842e4ca47c639;p=binutils-gdb.git gdb: replace AC_TRY_LINK in sanitize.m4 ... with AC_LINK_IFELSE + AC_LANG_PROGRAM. All changes in the generated configure file are insignificant whitespace changes. gdb/ChangeLog: * configure: Re-generate. * sanitize.m4: Replace AC_TRY_LINK with AC_LINK_IFELSE + AC_LANG_PROGRAM. Change-Id: I6fc4c39e10b28d2ade964e0d59a7f8ec0d3a272a --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e3734cf564a..91541795e26 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2020-10-31 Simon Marchi + + * configure: Re-generate. + * sanitize.m4: Replace AC_TRY_LINK with AC_LINK_IFELSE + + AC_LANG_PROGRAM. + 2020-10-31 Simon Marchi * configure: Re-generate. diff --git a/gdb/configure b/gdb/configure index a08c8c57ae3..aa89158d06d 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 78d00703ca7..87a4f3c9f21 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