mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-13 13:35:56 +00:00
* acconfig.h (DEFAULT_BFD_ARCH, DEFAULT_BFD_VEC): Remove.
* configure.in: Cleanup section that sources GDB and BFD configure subscripts. Remove evil changequotes here. * config.in, configure: Regenerated.
This commit is contained in:
parent
50abf9e57b
commit
27e9bf901e
@ -1,3 +1,10 @@
|
|||||||
|
2003-01-02 Mark Kettenis <kettenis@gnu.org>
|
||||||
|
|
||||||
|
* acconfig.h (DEFAULT_BFD_ARCH, DEFAULT_BFD_VEC): Remove.
|
||||||
|
* configure.in: Cleanup section that sources GDB and BFD configure
|
||||||
|
subscripts. Remove evil changequotes here.
|
||||||
|
* config.in, configure: Regenerated.
|
||||||
|
|
||||||
2003-01-02 Andrew Cagney <ac131313@redhat.com>
|
2003-01-02 Andrew Cagney <ac131313@redhat.com>
|
||||||
|
|
||||||
* arm-tdep.c: Use get_frame_pc and deprecated_update_frame_pc_hack
|
* arm-tdep.c: Use get_frame_pc and deprecated_update_frame_pc_hack
|
||||||
|
@ -156,12 +156,6 @@
|
|||||||
/* Define if <sys/ptrace.h> defines the PT_GETXMMREGS request. */
|
/* Define if <sys/ptrace.h> defines the PT_GETXMMREGS request. */
|
||||||
#undef HAVE_PT_GETXMMREGS
|
#undef HAVE_PT_GETXMMREGS
|
||||||
|
|
||||||
/* BFD's default architecture. */
|
|
||||||
#undef DEFAULT_BFD_ARCH
|
|
||||||
|
|
||||||
/* BFD's default target vector. */
|
|
||||||
#undef DEFAULT_BFD_VEC
|
|
||||||
|
|
||||||
/* Multi-arch enabled. */
|
/* Multi-arch enabled. */
|
||||||
#undef GDB_MULTI_ARCH
|
#undef GDB_MULTI_ARCH
|
||||||
|
|
||||||
|
@ -169,12 +169,6 @@
|
|||||||
/* Define if <sys/ptrace.h> defines the PT_GETXMMREGS request. */
|
/* Define if <sys/ptrace.h> defines the PT_GETXMMREGS request. */
|
||||||
#undef HAVE_PT_GETXMMREGS
|
#undef HAVE_PT_GETXMMREGS
|
||||||
|
|
||||||
/* BFD's default architecture. */
|
|
||||||
#undef DEFAULT_BFD_ARCH
|
|
||||||
|
|
||||||
/* BFD's default target vector. */
|
|
||||||
#undef DEFAULT_BFD_VEC
|
|
||||||
|
|
||||||
/* Multi-arch enabled. */
|
/* Multi-arch enabled. */
|
||||||
#undef GDB_MULTI_ARCH
|
#undef GDB_MULTI_ARCH
|
||||||
|
|
||||||
@ -421,6 +415,12 @@
|
|||||||
/* Name of this package. */
|
/* Name of this package. */
|
||||||
#undef PACKAGE
|
#undef PACKAGE
|
||||||
|
|
||||||
|
/* Define to BFD's default architecture. */
|
||||||
|
#undef DEFAULT_BFD_ARCH
|
||||||
|
|
||||||
|
/* Define to BFD's default target vector. */
|
||||||
|
#undef DEFAULT_BFD_VEC
|
||||||
|
|
||||||
/* Define to 1 to avoid a clash between <widec.h> and <wchar.h> on
|
/* Define to 1 to avoid a clash between <widec.h> and <wchar.h> on
|
||||||
Solaris 2.[78] when using GCC. */
|
Solaris 2.[78] when using GCC. */
|
||||||
#undef _MSE_INT_H
|
#undef _MSE_INT_H
|
||||||
|
792
gdb/configure
vendored
792
gdb/configure
vendored
File diff suppressed because it is too large
Load Diff
@ -76,31 +76,24 @@ if test "${enable_multi_ice}" = "yes"; then
|
|||||||
configdirs="${configdirs} multi-ice"
|
configdirs="${configdirs} multi-ice"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl
|
. $srcdir/configure.host
|
||||||
changequote(,)dnl
|
|
||||||
|
|
||||||
. ${srcdir}/configure.host
|
. $srcdir/configure.tgt
|
||||||
|
|
||||||
. ${srcdir}/configure.tgt
|
# Fetch the default architecture and default target vector from BFD.
|
||||||
|
targ=$target; . $srcdir/../bfd/config.bfd
|
||||||
|
|
||||||
targ=${target} ; . ${srcdir}/../bfd/config.bfd
|
# We only want the first architecture, so strip off the others if
|
||||||
|
# there is more than one.
|
||||||
|
targ_archs=`echo $targ_archs | sed 's/ .*//'`
|
||||||
|
|
||||||
dnl
|
if test "x$targ_archs" != x; then
|
||||||
changequote([,])dnl
|
AC_DEFINE_UNQUOTED(DEFAULT_BFD_ARCH, $targ_archs,
|
||||||
|
[Define to BFD's default architecture. ])
|
||||||
dnl use BFD to determine the default architecture and byte order
|
|
||||||
dnl (bfd_vec->byteorder provides the latter).
|
|
||||||
targ=${target}
|
|
||||||
. ${srcdir}/../bfd/config.bfd
|
|
||||||
|
|
||||||
dnl We only want the first arch, if there is more than one.
|
|
||||||
targ_archs=`echo ${targ_archs} | sed -e 's/ .*//;'`
|
|
||||||
|
|
||||||
if test x"${targ_archs}" != x ; then
|
|
||||||
AC_DEFINE_UNQUOTED(DEFAULT_BFD_ARCH, ${targ_archs})
|
|
||||||
fi
|
fi
|
||||||
if test x"${targ_defvec}" != x ; then
|
if test "x$targ_defvec" != x; then
|
||||||
AC_DEFINE_UNQUOTED(DEFAULT_BFD_VEC, ${targ_defvec})
|
AC_DEFINE_UNQUOTED(DEFAULT_BFD_VEC, $targ_defvec,
|
||||||
|
[Define to BFD's default target vector. ])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_ARG_PROGRAM
|
AC_ARG_PROGRAM
|
||||||
|
Loading…
x
Reference in New Issue
Block a user