diff options
author | Pedro Alves <palves@redhat.com> | 2015-02-27 15:52:02 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2015-02-27 15:52:02 +0000 |
commit | 07697489f4587e41f4f63aa526c1bd7d2fcd5494 (patch) | |
tree | 113b7f264c63cdb823dd30d0fba4beb5a8ae0177 /gdb/configure.ac | |
parent | cdb602b17548eeebb5e700c507d734ea5f887a49 (diff) | |
download | binutils-gdb-07697489f4587e41f4f63aa526c1bd7d2fcd5494.tar.gz |
Create libiberty.m4, have GDB and GDBserver use it
Converting GDB to be a C++ program, I stumbled on 'basename' issues,
like:
src/gdb/../include/ansidecl.h:169:64: error: new declaration ‘char* basename(const char*)’
/usr/include/string.h:597:26: error: ambiguates old declaration ‘const char* basename(const char*)’
which I believe led to this bit in gold's configure.ac:
dnl We have to check these in C, not C++, because autoconf generates
dnl tests which have no type information, and current glibc provides
dnl multiple declarations of functions like basename when compiling
dnl with C++.
AC_CHECK_DECLS([basename, ffs, asprintf, vasprintf, snprintf, vsnprintf, strverscmp])
These checks IIUC intend to generate all the HAVE_DECL_FOO symbols
that libiberty.h and ansidecl.h check.
GDB is missing these checks currently, which results in the conflict
shown above.
This adds an m4 file that both GDB and GDBserver's configury use to
pull in the autoconf checks that libiberty clients needs done in order
to use these libiberty.h/ansidecl.h.
gdb/ChangeLog:
2015-02-27 Pedro Alves <palves@redhat.com>
* libiberty.m4: New file.
* acinclude.m4: Include libiberty.m4.
* configure.ac: Call libiberty_INIT.
* config.in, configure: Regenerate.
gdb/gdbserver/
2015-02-27 Pedro Alves <palves@redhat.com>
* acinclude.m4: Include libiberty.m4.
* configure.ac: Call libiberty_INIT.
* config.in, configure: Regenerate.
Diffstat (limited to 'gdb/configure.ac')
-rw-r--r-- | gdb/configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/configure.ac b/gdb/configure.ac index 6ac8adb4fac..e72dfba749c 100644 --- a/gdb/configure.ac +++ b/gdb/configure.ac @@ -1283,6 +1283,8 @@ AC_CHECK_HEADERS(term.h, [], [], # Checks for declarations. # # ------------------------- # +libiberty_INIT + AC_CHECK_DECLS([free, malloc, realloc, snprintf]) AM_LC_MESSAGES |