diff options
author | Tom Tromey <tom@tromey.com> | 2020-02-14 14:34:20 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2020-02-14 14:34:20 -0700 |
commit | 1a627e7e6c61e97951932e3a9c5fb706efe3ef3e (patch) | |
tree | 14a1dac984522ec23576065d34a037ab8f7d9b02 /Makefile.in | |
parent | a4a38eb437382fbf2b2c6788fe35dd3340f9664a (diff) | |
download | fsf-binutils-gdb-1a627e7e6c61e97951932e3a9c5fb706efe3ef3e.zip fsf-binutils-gdb-1a627e7e6c61e97951932e3a9c5fb706efe3ef3e.tar.gz fsf-binutils-gdb-1a627e7e6c61e97951932e3a9c5fb706efe3ef3e.tar.bz2 |
Change gdbserver to use existing gnulib and libiberty
This changes gdbserver so that it no longer builds its own gnulib and
libiberty. Instead, it now relies on the ones that were already built
at the top level.
gdbsupport is still built specially for gdbserver. This is more
complicated and will be tackled in a subsequent patch.
ChangeLog
2020-02-14 Tom Tromey <tom@tromey.com>
* Makefile.in: Rebuild.
* Makefile.def: Make gdbserver require gnulib and libiberty.
gdbserver/ChangeLog
2020-02-14 Tom Tromey <tom@tromey.com>
* acinclude.m4: Don't include acx_configure_dir.m4.
* Makefile.in (LIBIBERTY_BUILDDIR, GNULIB_BUILDDIR): Update.
(SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): Remove.
(all, install-only, uninstall, clean-info, clean)
(maintainer-clean): Don't recurse.
(subdir_do, all-lib): Remove.
($(LIBGNU) $(LIBIBERTY) $(GNULIB_H)): Remove rule.
(GNULIB_H): Remove.
(generated_files): Update.
($(GNULIB_BUILDDIR)/Makefile): Remove rule.
* configure: Rebuild.
* configure.ac: Don't configure gnulib or libiberty.
(GNULIB): Update.
gdbsupport/ChangeLog
2020-02-14 Tom Tromey <tom@tromey.com>
* common-defs.h: Change path to gnulib/config.h.
Change-Id: I469cbbf5db2ab37109c058e9e3a1e4f4dabdfc98
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 80fa458..be38b34 100644 --- a/Makefile.in +++ b/Makefile.in @@ -51976,6 +51976,8 @@ all-gdb: maybe-all-readline all-gdb: maybe-all-build-bison all-gdb: maybe-all-sim all-gdb: maybe-all-libtermcap +configure-gdbserver: maybe-all-gnulib +all-gdbserver: maybe-all-gnulib configure-libgui: maybe-configure-tcl configure-libgui: maybe-configure-tk all-libgui: maybe-all-tcl @@ -52427,6 +52429,7 @@ configure-gnattools: stage_last configure-libcc1: stage_last configure-utils: stage_last configure-gdb: stage_last +configure-gdbserver: stage_last configure-gdbsupport: stage_last configure-gprof: stage_last configure-sid: stage_last @@ -52450,6 +52453,7 @@ all-gdb: maybe-all-libiconv all-gdb: maybe-all-opcodes all-gdb: maybe-all-libdecnumber all-gdb: maybe-all-libctf +all-gdbserver: maybe-all-libiberty configure-gdbsupport: maybe-configure-bfd all-gdbsupport: maybe-all-bfd configure-gprof: maybe-configure-intl |