gdb: use libtool in GDB_AC_CHECK_BFD
authorJose E. Marchesi <jose.marchesi@oracle.com>
Mon, 7 Nov 2022 19:35:43 +0000 (20:35 +0100)
committerJose E. Marchesi <jose.marchesi@oracle.com>
Tue, 15 Nov 2022 19:01:06 +0000 (20:01 +0100)
commit5218fa9e8937b007d554f1e01c2e4ecdb9b7e271
tree9dae06d426e20b24f6bf2e98a4ab24c0f226eac7
parent2c2316c5fd2bf6310c21c1c88a940be8494d1870
gdb: use libtool in GDB_AC_CHECK_BFD

The GDB_AC_CHECK_BFD macro defined in gdb/acinclude.m4 uses the
AC_LINK_IFELSE autoconf macro in order to link a simple program to
check features of libbfd.

If libbfd's link dependencies change, it was necessary to reflect them
either in the definition of the macro, or as a consequence of checking
for them with an autoconf macro resulting in an addition to LIBS.

This patch modifies the definition of the GDB_CHECK_BFD macro in order
to use libtool to perform the test link.  This makes it possible to
not have to list dependencies of libbfd (which are indirect to GDB) at
all.

After this patch:

  configure:28553: checking for ELF support in BFD
  configure:28573: ./libtool --quiet --mode=link gcc -o conftest \
                   -I../../gdb/../include -I../bfd \
                   -I../../gdb/../bfd -g -O2 \
                   -L../bfd -L../libiberty conftest.c -lbfd -liberty \
                   -lncursesw -lm -ldl  >&5
  configure:28573: $? = 0
  configure:28583: result: yes

Tests performed:

- Configure --with-system-zlib and --without-system-zlib.
- Check link dependencies of installed GDB with both --enable-shared
  and --disable-shared.
- Run installed GDB in both cases.

Approved-By: Simon Marchi <simon.marchi@efficios.com>
gdb/acinclude.m4
gdb/configure
gdb/configure.ac