mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
d0ac1c4488
When trying to run the update-gnulib.sh script in gdb, I get this: Error: Wrong automake version (Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/\${ <-- HERE ([^ =:+{}]+)}/ at /opt/automake/1.11.1/bin/automake line 4113.), we need 1.11.1. Aborting. Apparently, it's an issue with a regex in automake that triggers a warning starting with Perl 5.22. It has been fixed in automake 1.15.1. So I think it's a good excuse to bump the versions of autoconf and automake used in the gnulib import. And to avoid requiring multiple builds of autoconf/automake, it was suggested that we bump the required version of those tools for all binutils-gdb. For autoconf, the 2.69 version is universally available, so it's an easy choice. For automake, different distros and distro versions have different automake versions. But 1.15.1 seems to be the most readily available as a package. In any case, it's easy to build it from source. I removed the version checks from AUTOMAKE_OPTIONS and AC_PREREQ, because I don't think they are useful in our case. They only specify a lower bound for the acceptable version of automake/autoconf. That's useful if you let the user choose the version of the tool they want to use, but want to set a minimum version (because you use a feature that was introduced in that version). In our case, we force people to use a specific version anyway. For the autoconf version, we have the check in config/override.m4 that enforces the version we want. It will be one less thing to update next time we change autotools version. I hit a few categories of problems that required some changes. They are described below along with the chosen solutions. Problem 1: configure.ac:17: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: configure.ac:17: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation Solution 1: Adjust the code based on the example at that URL. Problem 2 (in zlib/): Makefile.am: error: required file './INSTALL' not found Makefile.am: 'automake --add-missing' can install 'INSTALL' Makefile.am: error: required file './NEWS' not found Makefile.am: error: required file './AUTHORS' not found Makefile.am: error: required file './COPYING' not found Makefile.am: 'automake --add-missing' can install 'COPYING' Solution 2: Add the foreign option to AUTOMAKE_OPTIONS. Problem 3: doc/Makefile.am:20: error: support for Cygnus-style trees has been removed Solution 3: Remove the cygnus options. Problem 4: Makefile.am:656: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') Solution 4: Rename "INCLUDES = " to "AM_CPPFLAGS += " (because AM_CPPFLAGS is already defined earlier). Problem 5: doc/Makefile.am:71: warning: suffix '.texinfo' for Texinfo files is discouraged; use '.texi' instead doc/Makefile.am: warning: Oops! doc/Makefile.am: It appears this file (or files included by it) are triggering doc/Makefile.am: an undocumented, soon-to-be-removed automake hack. doc/Makefile.am: Future automake versions will no longer place in the builddir doc/Makefile.am: (rather than in the srcdir) the generated '.info' files that doc/Makefile.am: appear to be cleaned, by e.g. being listed in CLEANFILES or doc/Makefile.am: DISTCLEANFILES. doc/Makefile.am: If you want your '.info' files to be placed in the builddir doc/Makefile.am: rather than in the srcdir, you have to use the shiny new doc/Makefile.am: 'info-in-builddir' automake option. Solution 5: Rename .texinfo files to .texi. Problem 6: doc/Makefile.am: warning: Oops! doc/Makefile.am: It appears this file (or files included by it) are triggering doc/Makefile.am: an undocumented, soon-to-be-removed automake hack. doc/Makefile.am: Future automake versions will no longer place in the builddir doc/Makefile.am: (rather than in the srcdir) the generated '.info' files that doc/Makefile.am: appear to be cleaned, by e.g. being listed in CLEANFILES or doc/Makefile.am: DISTCLEANFILES. doc/Makefile.am: If you want your '.info' files to be placed in the builddir doc/Makefile.am: rather than in the srcdir, you have to use the shiny new doc/Makefile.am: 'info-in-builddir' automake option. Solution 6: Remove the hack at the bottom of doc/Makefile.am and use the info-in-builddir automake option. Problem 7: doc/Makefile.am:35: error: required file '../texinfo.tex' not found doc/Makefile.am:35: 'automake --add-missing' can install 'texinfo.tex' Solution 7: Use the no-texinfo.tex automake option. We also have one in texinfo/texinfo.tex, not sure if we should point to that, or move it (or a newer version of it added with automake --add-missing) to top-level. Problem 8: Makefile.am:131: warning: source file 'config/tc-aarch64.c' is in a subdirectory, Makefile.am:131: but option 'subdir-objects' is disabled automake: warning: possible forward-incompatibility. automake: At least a source file is in a subdirectory, but the 'subdir-objects' automake: automake option hasn't been enabled. For now, the corresponding output automake: object file(s) will be placed in the top-level directory. However, automake: this behaviour will change in future Automake versions: they will automake: unconditionally cause object files to be placed in the same subdirectory automake: of the corresponding sources. automake: You are advised to start using 'subdir-objects' option throughout your automake: project, to avoid future incompatibilities. Solution 8: Use subdir-objects, that means adjusting references to some .o that will now be in config/. Problem 9: configure.ac:375: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body ../../lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from... ../../lib/autoconf/general.m4:2601: _AC_COMPILE_IFELSE is expanded from... ../../lib/autoconf/general.m4:2617: AC_COMPILE_IFELSE is expanded from... ../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... ../../lib/autoconf/general.m4:2042: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:2063: AC_CACHE_CHECK is expanded from... configure.ac:375: the top level Solution 9: Use AC_LANG_SOURCE, or use proper quoting. Problem 10 (in intl/): configure.ac:7: warning: AC_COMPILE_IFELSE was called before AC_USE_SYSTEM_EXTENSIONS /usr/share/aclocal/threadlib.m4:36: gl_THREADLIB_EARLY_BODY is expanded from... /usr/share/aclocal/threadlib.m4:29: gl_THREADLIB_EARLY is expanded from... /usr/share/aclocal/threadlib.m4:318: gl_THREADLIB is expanded from... /usr/share/aclocal/lock.m4:9: gl_LOCK is expanded from... /usr/share/aclocal/intl.m4:211: gt_INTL_SUBDIR_CORE is expanded from... /usr/share/aclocal/intl.m4:25: AM_INTL_SUBDIR is expanded from... /usr/share/aclocal/gettext.m4:57: AM_GNU_GETTEXT is expanded from... configure.ac:7: the top level Solution 10: Add AC_USE_SYSTEM_EXTENSIONS in configure.ac. ChangeLog: * libtool.m4: Use AC_LANG_SOURCE. * configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE. * README-maintainer-mode: Update version requirements. * ar-lib: New file. * test-driver: New file. * configure: Re-generate. bfd/ChangeLog: * Makefile.am (AUTOMAKE_OPTIONS): Remove 1.11. (INCLUDES): Rename to ... (AM_CPPFLAGS): ... this. * configure.ac: Remove AC_PREREQ. * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove 1.9, cygnus, add info-in-builddir no-texinfo.tex. (info_TEXINFOS): Rename bfd.texinfo to bfd.texi. * doc/bfd.texinfo: Rename to ... * doc/bfd.texi: ... this. * Makefile.in: Re-generate. * aclocal.m4: Re-generate. * config.in: Re-generate. * configure: Re-generate. * doc/Makefile.in: Re-generate. binutils/ChangeLog: * configure.ac: Remove AC_PREREQ. * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove cygnus, add info-in-builddir no-texinfo.tex. * Makefile.in: Re-generate. * aclocal.m4: Re-generate. * config.in: Re-generate. * configure: Re-generate. * doc/Makefile.in: Re-generate. config/ChangeLog: * override.m4 (_GCC_AUTOCONF_VERSION): Bump from 2.64 to 2.69. etc/ChangeLog: * configure.in: Remove AC_PREREQ. * configure: Re-generate. gas/ChangeLog: * Makefile.am (AUTOMAKE_OPTIONS): Remove 1.11, add subdir-objects. (TARG_CPU_O, OBJ_FORMAT_O, ATOF_TARG_O): Add config/ prefix. * configure.ac (TARG_CPU_O, OBJ_FORMAT_O, ATOF_TARG_O, emfiles, extra_objects): Add config/ prefix. * doc/as.texinfo: Rename to... * doc/as.texi: ... this. * doc/Makefile.am: Rename as.texinfo to as.texi throughout. Remove DISTCLEANFILES hack. (AUTOMAKE_OPTIONS): Remove 1.8, cygnus, add no-texinfo.tex and info-in-builddir. * Makefile.in: Re-generate. * aclocal.m4: Re-generate. * config.in: Re-generate. * configure: Re-generate. * doc/Makefile.in: Re-generate. gdb/ChangeLog: * common/common-defs.h (PACKAGE_NAME, PACKAGE_VERSION, PACKAGE_STRING, PACKAGE_TARNAME): Undefine. * configure.ac: Remove AC_PREREQ, add missing quoting. * gnulib/configure.ac: Modernize usage of AC_INIT/AM_INIT_AUTOMAKE. Remove AC_PREREQ. * gnulib/update-gnulib.sh (AUTOCONF_VERSION): Bump to 2.69. (AUTOMAKE_VERSION): Bump to 1.15.1. * configure: Re-generate. * config.in: Re-generate. * aclocal.m4: Re-generate. * gnulib/aclocal.m4: Re-generate. * gnulib/config.in: Re-generate. * gnulib/configure: Re-generate. * gnulib/import/Makefile.in: Re-generate. gdb/gdbserver/ChangeLog: * configure.ac: Remove AC_PREREQ, add missing quoting. * configure: Re-generate. * config.in: Re-generate. * aclocal.m4: Re-generate. gdb/testsuite/ChangeLog: * configure.ac: Remove AC_PREREQ. * configure: Re-generate. gold/ChangeLog: * configure.ac: Remove AC_PREREQ, add missing quoting and usage of AC_LANG_SOURCE. * Makefile.in: Re-generate. * aclocal.m4: Re-generate. * configure: Re-generate. * testsuite/Makefile.in: Re-generate. gprof/ChangeLog: * configure.ac: Remove AC_PREREQ. * Makefile.am: Remove DISTCLEANFILES hack. (AUTOMAKE_OPTIONS): Remove 1.11, add info-in-builddir. * Makefile.in: Re-generate. * aclocal.m4: Re-generate. * configure: Re-generate. * gconfig.in: Re-generate. intl/ChangeLog: * configure.ac: Add AC_USE_SYSTEM_EXTENSIONS, remove AC_PREREQ. * configure: Re-generate. * config.h.in: Re-generate. * aclocal.m4: Re-generate. ld/ChangeLog: * configure.ac: Remove AC_PREREQ. * Makefile.am: Remove DISTCLEANFILES hack, rename ld.texinfo to ld.texi, ldint.texinfo to ldint.texi throughout. (AUTOMAKE_OPTIONS): Add info-in-builddir. * README: Rename ld.texinfo to ld.texi, ldint.texinfo to ldint.texi throughout. * gen-doc.texi: Likewise. * h8-doc.texi: Likewise. * ld.texinfo: Rename to ... * ld.texi: ... this. * ldint.texinfo: Rename to ... * ldint.texi: ... this. * Makefile.in: Re-generate. * aclocal.m4: Re-generate. * config.in: Re-generate. * configure: Re-generate. libdecnumber/ChangeLog: * configure.ac: Remove AC_PREREQ. * configure: Re-generate. * aclocal.m4. libiberty/ChangeLog: * configure.ac: Remove AC_PREREQ. * configure: Re-generate. * config.in: Re-generate. opcodes/ChangeLog: * Makefile.am (AUTOMAKE_OPTIONS): Remove 1.11. * configure.ac: Remove AC_PREREQ. * Makefile.in: Re-generate. * aclocal.m4: Re-generate. * configure: Re-generate. readline/ChangeLog.gdb: * configure: Re-generate. * examples/rlfe/configure: Re-generate. sim/ChangeLog: * All configure.ac: Remove AC_PREREQ. * All configure: Re-generate. zlib/ChangeLog.bin-gdb: * configure.ac: Modernize AC_INIT call, remove AC_PREREQ. * Makefile.am (AUTOMAKE_OPTIONS): Remove 1.8, cygnus, add foreign. * Makefile.in: Re-generate. * aclocal.m4: Re-generate. * configure: Re-generate.
512 lines
15 KiB
Plaintext
512 lines
15 KiB
Plaintext
dnl Autoconf configure script for GDB server.
|
|
dnl Copyright (C) 2000-2018 Free Software Foundation, Inc.
|
|
dnl
|
|
dnl This file is part of GDB.
|
|
dnl
|
|
dnl This program is free software; you can redistribute it and/or modify
|
|
dnl it under the terms of the GNU General Public License as published by
|
|
dnl the Free Software Foundation; either version 3 of the License, or
|
|
dnl (at your option) any later version.
|
|
dnl
|
|
dnl This program is distributed in the hope that it will be useful,
|
|
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
dnl GNU General Public License for more details.
|
|
dnl
|
|
dnl You should have received a copy of the GNU General Public License
|
|
dnl along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
AC_INIT(server.c)
|
|
AC_CONFIG_HEADER(config.h:config.in)
|
|
|
|
AM_MAINTAINER_MODE
|
|
|
|
AC_PROG_CC
|
|
AC_PROG_CXX
|
|
AC_GNU_SOURCE
|
|
AC_SYS_LARGEFILE
|
|
|
|
AC_CANONICAL_SYSTEM
|
|
|
|
AC_PROG_INSTALL
|
|
AC_CHECK_TOOL(AR, ar)
|
|
AC_PROG_RANLIB
|
|
|
|
AC_ARG_PROGRAM
|
|
|
|
# We require a C++11 compiler. Check if one is available, and if
|
|
# necessary, set CXX_DIALECT to some -std=xxx switch.
|
|
AX_CXX_COMPILE_STDCXX(11, , mandatory)
|
|
|
|
AC_HEADER_STDC
|
|
|
|
# Set the 'development' global.
|
|
. $srcdir/../../bfd/development.sh
|
|
|
|
# Enable -lmcheck by default (it provides cheap-enough memory
|
|
# mangling), but turn it off for releases.
|
|
if $development; then
|
|
libmcheck_default=yes
|
|
else
|
|
libmcheck_default=no
|
|
fi
|
|
GDB_AC_LIBMCHECK(${libmcheck_default})
|
|
|
|
if $development; then
|
|
srv_selftest_objs="common/selftest.o"
|
|
AC_DEFINE(GDB_SELF_TEST, 1,
|
|
[Define if self-testing features should be enabled])
|
|
fi
|
|
|
|
ACX_NONCANONICAL_TARGET
|
|
ACX_NONCANONICAL_HOST
|
|
|
|
# Dependency checking.
|
|
ZW_CREATE_DEPDIR
|
|
|
|
# Create sub-directories for objects and dependencies.
|
|
CONFIG_SRC_SUBDIR="arch common"
|
|
AC_SUBST(CONFIG_SRC_SUBDIR)
|
|
|
|
AC_CONFIG_COMMANDS([gdbdepdir],[
|
|
for subdir in ${CONFIG_SRC_SUBDIR}
|
|
do
|
|
$SHELL $ac_aux_dir/mkinstalldirs $subdir/$DEPDIR
|
|
done],
|
|
[ac_aux_dir=$ac_aux_dir DEPDIR=$DEPDIR CONFIG_SRC_SUBDIR="$CONFIG_SRC_SUBDIR"])
|
|
|
|
ZW_PROG_COMPILER_DEPENDENCIES([CC])
|
|
|
|
gnulib_extra_configure_args=
|
|
# If large-file support is disabled, make sure gnulib does the same.
|
|
if test "$enable_largefile" = no; then
|
|
gnulib_extra_configure_args="$gnulib_extra_configure_args --disable-largefile"
|
|
fi
|
|
|
|
# Configure gnulib. We can't use AC_CONFIG_SUBDIRS as that'd expect
|
|
# to find the the source subdir to be configured directly under
|
|
# gdbserver/. We need to build gnulib under some other directory not
|
|
# "gnulib", to avoid the problem of both GDB and GDBserver wanting to
|
|
# build it in the same directory, when building in the source dir.
|
|
ACX_CONFIGURE_DIR(["../gnulib"], ["build-gnulib-gdbserver"],
|
|
["$gnulib_extra_configure_args"])
|
|
|
|
ACX_CONFIGURE_DIR(["../../libiberty"], ["build-libiberty-gdbserver"])
|
|
|
|
AC_CHECK_HEADERS(termios.h sys/reg.h string.h dnl
|
|
proc_service.h sys/procfs.h linux/elf.h dnl
|
|
fcntl.h signal.h sys/file.h dnl
|
|
sys/ioctl.h netinet/in.h sys/socket.h netdb.h dnl
|
|
netinet/tcp.h arpa/inet.h)
|
|
AC_FUNC_FORK
|
|
AC_CHECK_FUNCS(getauxval pread pwrite pread64 setns)
|
|
|
|
GDB_AC_COMMON
|
|
|
|
# Check the return and argument types of ptrace.
|
|
GDB_AC_PTRACE
|
|
|
|
# Check for UST
|
|
ustlibs=""
|
|
ustinc=""
|
|
|
|
AC_ARG_WITH(ust, [ --with-ust=PATH Specify prefix directory for the installed UST package
|
|
Equivalent to --with-ust-include=PATH/include
|
|
plus --with-ust-lib=PATH/lib])
|
|
AC_ARG_WITH(ust_include, [ --with-ust-include=PATH Specify directory for installed UST include files])
|
|
AC_ARG_WITH(ust_lib, [ --with-ust-lib=PATH Specify the directory for the installed UST library])
|
|
|
|
case $with_ust in
|
|
no)
|
|
ustlibs=
|
|
ustinc=
|
|
;;
|
|
"" | yes)
|
|
ustlibs=" -lust "
|
|
ustinc=""
|
|
;;
|
|
*)
|
|
ustlibs="-L$with_ust/lib -lust"
|
|
ustinc="-I$with_ust/include "
|
|
;;
|
|
esac
|
|
if test "x$with_ust_include" != x; then
|
|
ustinc="-I$with_ust_include "
|
|
fi
|
|
if test "x$with_ust_lib" != x; then
|
|
ustlibs="-L$with_ust_lib -lust"
|
|
fi
|
|
|
|
if test "x$with_ust" != "xno"; then
|
|
saved_CFLAGS="$CFLAGS"
|
|
CFLAGS="$CFLAGS $ustinc"
|
|
AC_MSG_CHECKING([for ust])
|
|
AC_TRY_COMPILE([
|
|
#define CONFIG_UST_GDB_INTEGRATION
|
|
#include <ust/ust.h>
|
|
],[],
|
|
[AC_MSG_RESULT([yes]); AC_DEFINE(HAVE_UST, 1, [Define if UST is available])],
|
|
[AC_MSG_RESULT([no]); ustlibs= ; ustinc= ])
|
|
CFLAGS="$saved_CFLAGS"
|
|
fi
|
|
|
|
# Flags needed for UST
|
|
AC_SUBST(ustlibs)
|
|
AC_SUBST(ustinc)
|
|
|
|
AM_GDB_WARNINGS
|
|
dnl The codebase isn't clean yet with this flag.
|
|
case " $WARN_CFLAGS " in
|
|
*" -Wmissing-prototypes "*)
|
|
WARN_CFLAGS="$WARN_CFLAGS -Wno-missing-prototypes"
|
|
;;
|
|
esac
|
|
|
|
dnl dladdr is glibc-specific. It is used by thread-db.c but only for
|
|
dnl debugging messages. It lives in -ldl which is handled below so we don't
|
|
dnl use AC_CHECK_LIB (or AC_SEARCH_LIBS) here. Instead we just temporarily
|
|
dnl augment LIBS.
|
|
old_LIBS="$LIBS"
|
|
LIBS="$LIBS -ldl"
|
|
AC_CHECK_FUNCS(dladdr)
|
|
LIBS="$old_LIBS"
|
|
|
|
libiberty_INIT
|
|
|
|
AC_CHECK_DECLS([strerror, perror, vasprintf, vsnprintf])
|
|
|
|
AC_CHECK_MEMBERS([struct stat.st_blocks, struct stat.st_blksize])
|
|
|
|
# See if <sys/user.h> supports the %fs_base and %gs_bas amd64 segment registers.
|
|
# Older amd64 Linux's don't have the fs_base and gs_base members of
|
|
# `struct user_regs_struct'.
|
|
AC_CHECK_MEMBERS([struct user_regs_struct.fs_base, struct user_regs_struct.gs_base],
|
|
[], [], [#include <sys/types.h>
|
|
#include <sys/user.h>])
|
|
|
|
|
|
AC_CHECK_TYPES(socklen_t, [], [],
|
|
[#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
])
|
|
|
|
case "${target}" in
|
|
*-android*)
|
|
# Starting with NDK version 9, <elf.h> actually includes definitions
|
|
# of Elf32_auxv_t and Elf64_auxv_t. But sadly, <elf.h> includes
|
|
# <sys/exec_elf.h> which defines some of the ELF types incorrectly,
|
|
# leading to conflicts with the defintions from <linux/elf.h>.
|
|
# This makes it impossible for us to include both <elf.h> and
|
|
# <linux/elf.h>, which means that, in practice, we do not have
|
|
# access to Elf32_auxv_t and Elf64_auxv_t on this platform.
|
|
# Therefore, do not try to auto-detect availability, as it would
|
|
# get it wrong on this platform.
|
|
;;
|
|
*)
|
|
AC_CHECK_TYPES([Elf32_auxv_t, Elf64_auxv_t], [], [],
|
|
#include <elf.h>
|
|
)
|
|
esac
|
|
|
|
ACX_PKGVERSION([GDB])
|
|
ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/])
|
|
AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description])
|
|
AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address])
|
|
|
|
# Check for various supplementary target information (beyond the
|
|
# triplet) which might affect the choices in configure.srv.
|
|
case "${target}" in
|
|
changequote(,)dnl
|
|
i[34567]86-*-linux*)
|
|
changequote([,])dnl
|
|
AC_CACHE_CHECK([if building for x86-64], [gdb_cv_i386_is_x86_64],
|
|
[save_CPPFLAGS="$CPPFLAGS"
|
|
CPPFLAGS="$CPPFLAGS $CFLAGS"
|
|
AC_EGREP_CPP([got it], [
|
|
#if __x86_64__
|
|
got it
|
|
#endif
|
|
], [gdb_cv_i386_is_x86_64=yes],
|
|
[gdb_cv_i386_is_x86_64=no])
|
|
CPPFLAGS="$save_CPPFLAGS"])
|
|
;;
|
|
|
|
x86_64-*-linux*)
|
|
AC_CACHE_CHECK([if building for x32], [gdb_cv_x86_is_x32],
|
|
[save_CPPFLAGS="$CPPFLAGS"
|
|
CPPFLAGS="$CPPFLAGS $CFLAGS"
|
|
AC_EGREP_CPP([got it], [
|
|
#if __x86_64__ && __ILP32__
|
|
got it
|
|
#endif
|
|
], [gdb_cv_x86_is_x32=yes],
|
|
[gdb_cv_x86_is_x32=no])
|
|
CPPFLAGS="$save_CPPFLAGS"])
|
|
;;
|
|
|
|
m68k-*-*)
|
|
AC_CACHE_CHECK([if building for Coldfire], [gdb_cv_m68k_is_coldfire],
|
|
[save_CPPFLAGS="$CPPFLAGS"
|
|
CPPFLAGS="$CPPFLAGS $CFLAGS"
|
|
AC_EGREP_CPP([got it], [
|
|
#ifdef __mcoldfire__
|
|
got it
|
|
#endif
|
|
], [gdb_cv_m68k_is_coldfire=yes],
|
|
[gdb_cv_m68k_is_coldfire=no])
|
|
CPPFLAGS="$save_CPPFLAGS"])
|
|
;;
|
|
esac
|
|
|
|
. ${srcdir}/configure.srv
|
|
|
|
# Add in the common host objects.
|
|
. ${srcdir}/../common/common.host
|
|
srv_host_obs="$common_host_obs"
|
|
|
|
if test "${srv_mingwce}" = "yes"; then
|
|
LIBS="$LIBS -lws2"
|
|
elif test "${srv_mingw}" = "yes"; then
|
|
LIBS="$LIBS -lws2_32"
|
|
elif test "${srv_qnx}" = "yes"; then
|
|
LIBS="$LIBS -lsocket"
|
|
elif test "${srv_lynxos}" = "yes"; then
|
|
LIBS="$LIBS -lnetinet"
|
|
fi
|
|
|
|
if test "${srv_mingw}" = "yes"; then
|
|
AC_DEFINE(USE_WIN32API, 1,
|
|
[Define if we should use the Windows API, instead of the
|
|
POSIX API. On Windows, we use the Windows API when
|
|
building for MinGW, but the POSIX API when building
|
|
for Cygwin.])
|
|
fi
|
|
|
|
if test "${srv_linux_usrregs}" = "yes"; then
|
|
AC_DEFINE(HAVE_LINUX_USRREGS, 1,
|
|
[Define if the target supports PTRACE_PEEKUSR for register ]
|
|
[access.])
|
|
fi
|
|
|
|
if test "${srv_linux_regsets}" = "yes"; then
|
|
AC_DEFINE(HAVE_LINUX_REGSETS, 1,
|
|
[Define if the target supports register sets.])
|
|
|
|
AC_MSG_CHECKING(for PTRACE_GETREGS)
|
|
AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getregs,
|
|
[AC_TRY_COMPILE([#include <sys/ptrace.h>],
|
|
[PTRACE_GETREGS;],
|
|
[gdbsrv_cv_have_ptrace_getregs=yes],
|
|
[gdbsrv_cv_have_ptrace_getregs=no])])
|
|
AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getregs)
|
|
if test "${gdbsrv_cv_have_ptrace_getregs}" = "yes"; then
|
|
AC_DEFINE(HAVE_PTRACE_GETREGS, 1,
|
|
[Define if the target supports PTRACE_GETREGS for register ]
|
|
[access.])
|
|
fi
|
|
|
|
AC_MSG_CHECKING(for PTRACE_GETFPXREGS)
|
|
AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getfpxregs,
|
|
[AC_TRY_COMPILE([#include <sys/ptrace.h>],
|
|
[PTRACE_GETFPXREGS;],
|
|
[gdbsrv_cv_have_ptrace_getfpxregs=yes],
|
|
[gdbsrv_cv_have_ptrace_getfpxregs=no])])
|
|
AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getfpxregs)
|
|
if test "${gdbsrv_cv_have_ptrace_getfpxregs}" = "yes"; then
|
|
AC_DEFINE(HAVE_PTRACE_GETFPXREGS, 1,
|
|
[Define if the target supports PTRACE_GETFPXREGS for extended ]
|
|
[register access.])
|
|
fi
|
|
fi
|
|
|
|
if test "${srv_linux_btrace}" = "yes"; then
|
|
AC_DEFINE(HAVE_LINUX_BTRACE, 1,
|
|
[Define if the target supports branch tracing.])
|
|
fi
|
|
|
|
if test "$ac_cv_header_sys_procfs_h" = yes; then
|
|
BFD_HAVE_SYS_PROCFS_TYPE(lwpid_t)
|
|
BFD_HAVE_SYS_PROCFS_TYPE(psaddr_t)
|
|
BFD_HAVE_SYS_PROCFS_TYPE(prgregset_t)
|
|
BFD_HAVE_SYS_PROCFS_TYPE(prfpregset_t)
|
|
BFD_HAVE_SYS_PROCFS_TYPE(elf_fpregset_t)
|
|
fi
|
|
|
|
dnl Some systems (e.g., Android) have lwpid_t defined in libthread_db.h.
|
|
if test "$bfd_cv_have_sys_procfs_type_lwpid_t" != yes; then
|
|
GDBSERVER_HAVE_THREAD_DB_TYPE(lwpid_t)
|
|
fi
|
|
|
|
dnl Some systems (e.g., Android) have psaddr_t defined in libthread_db.h.
|
|
if test "$bfd_cv_have_sys_procfs_type_psaddr_t" != yes; then
|
|
GDBSERVER_HAVE_THREAD_DB_TYPE(psaddr_t)
|
|
fi
|
|
|
|
dnl Check for libdl, but do not add it to LIBS as only gdbserver
|
|
dnl needs it (and gdbreplay doesn't).
|
|
old_LIBS="$LIBS"
|
|
AC_CHECK_LIB(dl, dlopen)
|
|
LIBS="$old_LIBS"
|
|
|
|
srv_thread_depfiles=
|
|
srv_libs=
|
|
|
|
if test "$srv_linux_thread_db" = "yes"; then
|
|
if test "$ac_cv_lib_dl_dlopen" = "yes"; then
|
|
srv_libs="-ldl"
|
|
AC_MSG_CHECKING(for the dynamic export flag)
|
|
old_LDFLAGS="$LDFLAGS"
|
|
# Older GNU ld supports --export-dynamic but --dynamic-list may not be
|
|
# supported there.
|
|
RDYNAMIC="-Wl,--dynamic-list=${srcdir}/proc-service.list"
|
|
LDFLAGS="$LDFLAGS $RDYNAMIC"
|
|
AC_TRY_LINK([], [],
|
|
[found="-Wl,--dynamic-list"
|
|
RDYNAMIC='-Wl,--dynamic-list=$(srcdir)/proc-service.list'],
|
|
[RDYNAMIC="-rdynamic"
|
|
LDFLAGS="$old_LDFLAGS $RDYNAMIC"
|
|
AC_TRY_LINK([], [],
|
|
[found="-rdynamic"],
|
|
[found="no"
|
|
RDYNAMIC=""])])
|
|
AC_SUBST(RDYNAMIC)
|
|
LDFLAGS="$old_LDFLAGS"
|
|
AC_MSG_RESULT($found)
|
|
else
|
|
srv_libs="-lthread_db"
|
|
fi
|
|
|
|
srv_thread_depfiles="thread-db.o proc-service.o"
|
|
AC_DEFINE(USE_THREAD_DB, 1, [Define if we should use libthread_db.])
|
|
AC_CACHE_CHECK([for TD_VERSION], gdbsrv_cv_have_td_version,
|
|
[AC_TRY_COMPILE([#include <thread_db.h>], [TD_VERSION;],
|
|
[gdbsrv_cv_have_td_version=yes],
|
|
[gdbsrv_cv_have_td_version=no])])
|
|
if test $gdbsrv_cv_have_td_version = yes; then
|
|
AC_DEFINE(HAVE_TD_VERSION, 1, [Define if TD_VERSION is available.])
|
|
fi
|
|
fi
|
|
|
|
AC_ARG_WITH(libthread-db,
|
|
AS_HELP_STRING([--with-libthread-db=PATH], [use given libthread_db directly]),
|
|
[srv_libthread_db_path="${withval}"
|
|
srv_libs="$srv_libthread_db_path"
|
|
])
|
|
|
|
if test "$srv_libs" != "" -a "$srv_libs" != "-ldl"; then
|
|
AC_DEFINE(USE_LIBTHREAD_DB_DIRECTLY, 1, [Define if we should use libthread_db directly.])
|
|
fi
|
|
|
|
if test "$srv_xmlfiles" != ""; then
|
|
srv_xmlbuiltin="xml-builtin.o"
|
|
AC_DEFINE(USE_XML, 1, [Define if an XML target description is available.])
|
|
|
|
tmp_xmlfiles=$srv_xmlfiles
|
|
srv_xmlfiles=""
|
|
for f in $tmp_xmlfiles; do
|
|
srv_xmlfiles="$srv_xmlfiles \$(XML_DIR)/$f"
|
|
done
|
|
fi
|
|
|
|
GDBSERVER_DEPFILES="$srv_regobj $srv_tgtobj $srv_hostio_err_objs $srv_thread_depfiles $srv_host_obs $srv_selftest_objs"
|
|
GDBSERVER_LIBS="$srv_libs"
|
|
|
|
dnl Check whether the target supports __sync_*_compare_and_swap.
|
|
AC_CACHE_CHECK([whether the target supports __sync_*_compare_and_swap],
|
|
gdbsrv_cv_have_sync_builtins, [
|
|
AC_TRY_LINK([], [int foo, bar; bar = __sync_val_compare_and_swap(&foo, 0, 1);],
|
|
gdbsrv_cv_have_sync_builtins=yes,
|
|
gdbsrv_cv_have_sync_builtins=no)])
|
|
if test $gdbsrv_cv_have_sync_builtins = yes; then
|
|
AC_DEFINE(HAVE_SYNC_BUILTINS, 1,
|
|
[Define to 1 if the target supports __sync_*_compare_and_swap])
|
|
fi
|
|
|
|
dnl Check for -fvisibility=hidden support in the compiler.
|
|
saved_cflags="$CFLAGS"
|
|
CFLAGS="$CFLAGS -fvisibility=hidden"
|
|
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
|
|
[gdbsrv_cv_have_visibility_hidden=yes],
|
|
[gdbsrv_cv_have_visibility_hidden=no])
|
|
CFLAGS="$saved_cflags"
|
|
|
|
dnl Check if we can disable the virtual address space randomization.
|
|
dnl The functionality of setarch -R.
|
|
AC_CHECK_DECLS([ADDR_NO_RANDOMIZE],,, [#include <sys/personality.h>])
|
|
define([PERSONALITY_TEST], [AC_LANG_PROGRAM([#include <sys/personality.h>], [
|
|
# if !HAVE_DECL_ADDR_NO_RANDOMIZE
|
|
# define ADDR_NO_RANDOMIZE 0x0040000
|
|
# endif
|
|
/* Test the flag could be set and stays set. */
|
|
personality (personality (0xffffffff) | ADDR_NO_RANDOMIZE);
|
|
if (!(personality (personality (0xffffffff)) & ADDR_NO_RANDOMIZE))
|
|
return 1])])
|
|
AC_RUN_IFELSE([PERSONALITY_TEST],
|
|
[gdbsrv_cv_have_personality=true],
|
|
[gdbsrv_cv_have_personality=false],
|
|
[AC_LINK_IFELSE([PERSONALITY_TEST],
|
|
[gdbsrv_cv_have_personality=true],
|
|
[gdbsrv_cv_have_personality=false])])
|
|
if $gdbsrv_cv_have_personality
|
|
then
|
|
AC_DEFINE([HAVE_PERSONALITY], 1,
|
|
[Define if you support the personality syscall.])
|
|
fi
|
|
|
|
|
|
IPA_DEPFILES=""
|
|
extra_libraries=""
|
|
|
|
# check whether to enable the inprocess agent
|
|
if test "$ipa_obj" != "" \
|
|
-a "$gdbsrv_cv_have_sync_builtins" = yes \
|
|
-a "$gdbsrv_cv_have_visibility_hidden" = yes; then
|
|
have_ipa=true
|
|
else
|
|
have_ipa=false
|
|
fi
|
|
|
|
AC_ARG_ENABLE(inprocess-agent,
|
|
AS_HELP_STRING([--enable-inprocess-agent], [inprocess agent]),
|
|
[case "$enableval" in
|
|
yes) want_ipa=true ;;
|
|
no) want_ipa=false ;;
|
|
*) AC_MSG_ERROR([bad value $enableval for inprocess-agent]) ;;
|
|
esac],
|
|
[want_ipa=$have_ipa])
|
|
|
|
if $want_ipa ; then
|
|
if $have_ipa ; then
|
|
IPA_DEPFILES="$ipa_obj"
|
|
extra_libraries="$extra_libraries libinproctrace.so"
|
|
else
|
|
AC_MSG_ERROR([inprocess agent not supported for this target])
|
|
fi
|
|
fi
|
|
|
|
AC_SUBST(GDBSERVER_DEPFILES)
|
|
AC_SUBST(GDBSERVER_LIBS)
|
|
AC_SUBST(srv_xmlbuiltin)
|
|
AC_SUBST(srv_xmlfiles)
|
|
AC_SUBST(IPA_DEPFILES)
|
|
AC_SUBST(extra_libraries)
|
|
|
|
GNULIB=build-gnulib-gdbserver/import
|
|
|
|
GNULIB_STDINT_H=
|
|
if test x"$STDINT_H" != x; then
|
|
GNULIB_STDINT_H=$GNULIB/$STDINT_H
|
|
fi
|
|
AC_SUBST(GNULIB_STDINT_H)
|
|
|
|
AC_CONFIG_FILES([Makefile],
|
|
[case x$CONFIG_HEADERS in
|
|
xconfig.h:config.in)
|
|
echo > stamp-h ;;
|
|
esac
|
|
])
|
|
|
|
AC_OUTPUT
|