]> gcc.gnu.org Git - gcc.git/commitdiff
libbacktrace: test linker support for DWARF 5
authorIan Lance Taylor <iant@golang.org>
Wed, 8 Jul 2020 03:42:21 +0000 (20:42 -0700)
committerIan Lance Taylor <iant@golang.org>
Wed, 8 Jul 2020 03:45:10 +0000 (20:45 -0700)
On AIX, the compiler supports DWARF 5 but the linker does not.

2020-07-07 Clement Chigot <clement.chigot@atos.net>

* configure.ac: Test linker support for DWARF5
* configure: Regenerate

libbacktrace/configure
libbacktrace/configure.ac

index b453bae5ae69ecf86ee74b16046b27d3c4dd77f8..37c38e7ac5bce1356bb1566cbff3d6dc052340fe 100755 (executable)
@@ -13578,13 +13578,21 @@ CFLAGS="$CFLAGS -gdwarf-5"
 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 /* end confdefs.h.  */
 int i;
+int
+main ()
+{
+return 0;
+  ;
+  return 0;
+}
 _ACEOF
-if ac_fn_c_try_compile "$LINENO"; then :
+if ac_fn_c_try_link "$LINENO"; then :
   libbacktrace_cv_lib_dwarf5=yes
 else
   libbacktrace_cv_lib_dwarf5=no
 fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+rm -f core conftest.err conftest.$ac_objext \
+    conftest$ac_exeext conftest.$ac_ext
 CFLAGS=$CFLAGS_hold
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $libbacktrace_cv_lib_dwarf5" >&5
index bd16f20fd0e624c1588a477f49dd5d0fe7a170e1..c4b19c4066f0657528838abb3ce6140f9bcd7d86 100644 (file)
@@ -465,12 +465,12 @@ AC_SUBST(PTHREAD_CFLAGS)
 
 AM_CONDITIONAL(HAVE_PTHREAD, test "$libgo_cv_lib_pthread" = yes)
 
-dnl Test whether the compiler supports the -gdwarf-5 option.
+dnl Test whether the compiler and the linker support the -gdwarf-5 option.
 AC_CACHE_CHECK([whether -gdwarf-5 is supported],
 [libbacktrace_cv_lib_dwarf5],
 [CFLAGS_hold=$CFLAGS
 CFLAGS="$CFLAGS -gdwarf-5"
-AC_COMPILE_IFELSE([AC_LANG_SOURCE([int i;])],
+AC_LINK_IFELSE([AC_LANG_PROGRAM([int i;], [return 0;])],
 [libbacktrace_cv_lib_dwarf5=yes],
 [libbacktrace_cv_lib_dwarf5=no])
 CFLAGS=$CFLAGS_hold])
This page took 0.072911 seconds and 5 git commands to generate.