diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2020-07-28 03:50:10 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2020-07-28 03:56:34 -0700 |
commit | d70f978b44aafc22d87c0e72d0875008c3d9e311 (patch) | |
tree | d53f7d66d27b619f747638e4088006abdc923197 | |
parent | 1a02d6b0ff80048df106cbb776a550278f8c9d9c (diff) | |
download | gdb-d70f978b44aafc22d87c0e72d0875008c3d9e311.zip gdb-d70f978b44aafc22d87c0e72d0875008c3d9e311.tar.gz gdb-d70f978b44aafc22d87c0e72d0875008c3d9e311.tar.bz2 |
PKG_CHECK_MODULES: Check if $pkg_cv_[]$1[]_LIBS works
It is quite normal to have headers without library on multilib OSes.
Add AC_TRY_LINK to PKG_CHECK_MODULES to check if $pkg_cv_[]$1[]_LIBS
works.
config/
PR binutils/26301
* pkg.m4 (PKG_CHECK_MODULES): Add AC_TRY_LINK to check if
$pkg_cv_[]$1[]_LIBS works.
binutils/
PR binutils/26301
* configure: Regenerated.
gdb/
PR binutils/26301
* configure: Regenerated.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rwxr-xr-x | binutils/configure | 22 | ||||
-rw-r--r-- | config/ChangeLog | 11 | ||||
-rw-r--r-- | config/pkg.m4 | 6 | ||||
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rwxr-xr-x | gdb/configure | 22 |
7 files changed, 71 insertions, 2 deletions
@@ -1,7 +1,5 @@ 2020-07-24 Aaron Merey <amerey@redhat.com> - * config/debuginfod.m4: use PKG_CHECK_MODULES. - * config/pkg.m4: New file. * configure: Rebuild. * configure.ac: Remove AC_DEBUGINFOD. diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 2522808..2c76b2a 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2020-07-28 H.J. Lu <hongjiu.lu@intel.com> + + PR binutils/26301 + * configure: Regenerated. + 2020-07-27 Alan Modra <amodra@gmail.com> * objdump.c (dump_section): Don't return without calling diff --git a/binutils/configure b/binutils/configure index c9fc510..4620a6b 100755 --- a/binutils/configure +++ b/binutils/configure @@ -12439,6 +12439,28 @@ fi pkg_failed=untried fi +pkg_save_LDFLAGS="$LDFLAGS" +LDFLAGS="$LDFLAGS $pkg_cv_DEBUGINFOD_LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + pkg_failed=no +else + pkg_failed=yes +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LDFLAGS=$pkg_save_LDFLAGS + if test $pkg_failed = yes; then diff --git a/config/ChangeLog b/config/ChangeLog index 12795fc..2cd6177 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,14 @@ +2020-07-28 H.J. Lu <hongjiu.lu@intel.com> + + PR binutils/26301 + * pkg.m4 (PKG_CHECK_MODULES): Add AC_TRY_LINK to check if + $pkg_cv_[]$1[]_LIBS works. + +2020-07-24 Aaron Merey <amerey@redhat.com> + + * debuginfod.m4: use PKG_CHECK_MODULES. + * pkg.m4: New file. + 2020-07-04 Nick Clifton <nickc@redhat.com> Binutils 2.35 branch created. diff --git a/config/pkg.m4 b/config/pkg.m4 index 13a8890..45587e9 100644 --- a/config/pkg.m4 +++ b/config/pkg.m4 @@ -147,6 +147,12 @@ AC_MSG_CHECKING([for $2]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) +dnl Check whether $pkg_cv_[]$1[]_LIBS works. +pkg_save_LDFLAGS="$LDFLAGS" +LDFLAGS="$LDFLAGS $pkg_cv_[]$1[]_LIBS" +AC_TRY_LINK([],[return 0;], [pkg_failed=no], [pkg_failed=yes]) +LDFLAGS=$pkg_save_LDFLAGS + m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 234dc24..defca83 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2020-07-28 H.J. Lu <hongjiu.lu@intel.com> + + PR binutils/26301 + * configure: Regenerated. + 2020-07-28 Andrew Burgess <andrew.burgess@embecosm.com> * python/py-frame.c: Remove 'user-regs.h' include. diff --git a/gdb/configure b/gdb/configure index adcfa49..eb38aaa 100755 --- a/gdb/configure +++ b/gdb/configure @@ -7037,6 +7037,28 @@ fi pkg_failed=untried fi +pkg_save_LDFLAGS="$LDFLAGS" +LDFLAGS="$LDFLAGS $pkg_cv_DEBUGINFOD_LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + pkg_failed=no +else + pkg_failed=yes +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LDFLAGS=$pkg_save_LDFLAGS + if test $pkg_failed = yes; then |