summaryrefslogtreecommitdiff
path: root/MAINTAINERS
AgeCommit message (Collapse)Author
2021-05-24MAINTAINERS: Update path to readline config.{sub,guess} filesMaciej W. Rozycki
Complement commit 6999161a2a3b ("Move readline to the readline/readline subdirectory") and update the path to readline config.{sub,guess} files documented in MAINTAINERS. * MAINTAINERS: Update path to readline config.{sub,guess} files.
2020-02-07Move gdbserver to top levelTom Tromey
This patch moves gdbserver to the top level. This patch is as close to a pure move as possible -- gdbserver still builds its own variant of gnulib and gdbsupport. Changing this will be done in a separate patch. [v2] Note that, per Simon's review comment, this patch changes the tree so that gdbserver is not built for or1k or score. This makes sense, because there is apparently not actually a gdbserver port here. [v3] This version of the patch also splits out some configury into a new file, gdbserver/configure.host, so that the top-level configure script can simply rely on it in order to decide whether gdbserver should be built. [v4] This version adds documentation and removes some unnecessary top-level dependencies. [v5] Update docs to mention "make all-gdbserver" and change how top-level configure decides whether to build gdbserver, switching to a single, shared script. Tested by the buildbot. ChangeLog 2020-02-07 Tom Tromey <tom@tromey.com> Pedro Alves <palves@redhat.com> * src-release.sh (GDB_SUPPORT_DIRS): Add gdbserver. * gdbserver: New directory, moved from gdb/gdbserver. * configure.ac (host_tools): Add gdbserver. Only build gdbserver on certain systems. * Makefile.in, configure: Rebuild. * Makefile.def (host_modules, dependencies): Add gdbserver. * MAINTAINERS: Add gdbserver. gdb/ChangeLog 2020-02-07 Tom Tromey <tom@tromey.com> * README: Update gdbserver documentation. * gdbserver: Move to top level. * configure.tgt (build_gdbserver): Remove. * configure.ac: Remove --enable-gdbserver. * configure: Rebuild. * Makefile.in (distclean): Don't mention gdbserver. Change-Id: I826b7565b54604711dc7a11edea0499cd51ff39e
2020-01-14Move gdbsupport to the top levelTom Tromey
This patch moves the gdbsupport directory to the top level. This is the next step in the ongoing project to move gdbserver to the top level. The bulk of this patch was created by "git mv gdb/gdbsupport gdbsupport". This patch then adds a build system to gdbsupport and wires it into the top level. Then it changes gdb to use the top-level build. gdbserver, on the other hand, is not yet changed. It still does its own build of gdbsupport. ChangeLog 2020-01-14 Tom Tromey <tom@tromey.com> * src-release.sh (GDB_SUPPORT_DIRS): Add gdbsupport. * MAINTAINERS: Add gdbsupport. * configure: Rebuild. * configure.ac (configdirs): Add gdbsupport. * gdbsupport: New directory, move from gdb/gdbsupport. * Makefile.def (host_modules, dependencies): Add gnulib. * Makefile.in: Rebuild. gdb/ChangeLog 2020-01-14 Tom Tromey <tom@tromey.com> * nat/x86-linux-dregs.c: Include configh.h. * nat/linux-ptrace.c: Include configh.h. * nat/linux-btrace.c: Include configh.h. * defs.h: Include config.h, bfd.h. * configure.ac: Don't source common.host. (CONFIG_OBS, CONFIG_SRCS): Remove gdbsupport files. * configure: Rebuild. * acinclude.m4: Update path. * Makefile.in (SUPPORT, LIBSUPPORT, INCSUPPORT): New variables. (CONFIG_SRC_SUBDIR): Remove gdbsupport. (INTERNAL_CFLAGS_BASE): Add INCSUPPORT. (CLIBS): Add LIBSUPPORT. (CDEPS): Likewise. (COMMON_SFILES): Remove gdbsupport files. (HFILES_NO_SRCDIR): Likewise. (stamp-version): Update path to create-version.sh. (ALLDEPFILES): Remove gdbsupport files. gdb/gdbserver/ChangeLog 2020-01-14 Tom Tromey <tom@tromey.com> * server.h: Include config.h. * gdbreplay.c: Include config.h. * configure: Rebuild. * configure.ac: Don't source common.host. * acinclude.m4: Update path. * Makefile.in (INCSUPPORT): New variable. (INCLUDE_CFLAGS): Add INCSUPPORT. (SFILES): Update paths. (version-generated.c): Update path to create-version.sh. (gdbsupport/%-ipa.o, gdbsupport/%.o): Update paths. gdbsupport/ChangeLog 2020-01-14 Tom Tromey <tom@tromey.com> * common-defs.h: Add GDBSERVER case. Update includes. * acinclude.m4, aclocal.m4, config.in, configure, configure.ac, Makefile.am, Makefile.in, README: New files. * Moved from ../gdb/gdbsupport/ Change-Id: I07632e7798635c1bab389bf885971e584fb4bb78
2019-06-14Move gnulib to top levelTom Tromey
This patch moves the gdb/gnulib subdirectory to the top level. It adjusts the top-level build system to build gnulib when necessary, and changes gdb to use this. However, gdbserver still builds its own copy of gnulib, just from the new source location. A small hack was needed to ensure that gnulib is only built when gdb is enabled. The Makefile only provides an ordering -- the directory must be mentioned in configdirs to actually be compiled at all. Most of the patch is just a "git mv" of gnulib, though a few minor path adjustments were needed in some files there. Tested by the buildbot. ChangeLog 2019-06-14 Tom Tromey <tom@tromey.com> * MAINTAINERS: Add gnulib. * gnulib: New directory, move from gdb/gnulib. * configure.ac (host_libs): Add gnulib. * configure: Rebuild. * Makefile.def (host_modules, dependencies): Add gnulib. * Makefile.in: Rebuild. gdb/ChangeLog 2019-06-14 Tom Tromey <tom@tromey.com> * gnulib: Move directory to top-level. * configure.ac: Don't configure gnulib. * configure: Rebuild. * common/common-defs.h: Use new path to gnulib. * Makefile.in (GNULIB_BUILDDIR): Now ../gnulib. (GNULIB_H): Remove. (INCGNU): Look in new gnulib location. (HFILES_NO_SRCDIR): Remove gnulib files. (SUBDIR, REQUIRED_SUBDIRS): Remove gnulib. (generated_files): Remove GNULIB_H. ($(LIBGNU), all-lib): Remove targets. (distclean): Don't mention GNULIB_BUILDDIR. ($(GNULIB_BUILDDIR)/Makefile): Remove target. gdb/gdbserver/ChangeLog 2019-06-14 Tom Tromey <tom@tromey.com> * configure.ac: Use new path to gnulib. * configure: Rebuild. * Makefile.in (INCGNU, $(GNULIB_BUILDDIR)/Makefile): Use new path to gnulib. gnulib/ChangeLog 2019-06-14 Tom Tromey <tom@tromey.com> * update-gnulib.sh: Adjust paths. * Makefile.in: Adjust paths. * configure.ac: Adjust paths. Use ACX_LARGEFILE. * configure: Rebuild.
2019-05-28Add libctf to top-level MAINTAINERS; add myself as CTF maintainer.Nick Alcock
2014-11-04Update description of ownership of files in include/Doug Evans
2012-05-12MAINTAINERS: clarify policy with config/ (and other top level files)Mike Frysinger
Rather than copy & paste more text, just merge the existing config/ section with the existing intl/ section. This ends up clarifying the policy with that subdir (and top level files) that any commit made to gcc's repo is allowed to be merged with the sourceware tree without pre-approval. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-02-12Import move-if-change script from gnulib.Ralf Wildenhues
/: PR binutils/12283 * MAINTAINERS (mkinstalldirs): Comes from Automake. (move-if-change): Comes from gnulib. * move-if-change: Import version from gnulib.
2009-08-19* MAINTAINERS: Perform some obvious fixups.Christopher Faylor
2008-04-18* MAINTAINERS: Replace reference to configure.in with reference to configure.ac.Nick Clifton
2008-03-24Add elfcpp, gold directories.Ben Elliston
2007-10-11 * src-release (GDB_SUPPORT_DIRS): Add libdecnumber.Daniel Jacobowitz
* libdecnumber: New directory, imported from GCC.
2006-05-222006-05-22 Steve Ellcey <sje@cup.hp.com>Steve Ellcey
* MAINTAINERS: Change intl updating instructions. * config.rpath: Copy from GCC tree. * intl: Replace contents of intl directory with intl from GCC tree.
2006-03-01Update information about: config-ml.in; makefile.vms; mkdep; setup.com;Nick Clifton
etc/; intl/; utils/; compile; depcomp; install-sh; missing; ylwrap; config/
2005-06-29Remove dejagnu/ entry.Ben Elliston
2005-02-082005-02-08 Andrew Cagney <cagney@gnu.org>Andrew Cagney
* MAINTAINERS: Delete reference to dejagnu/ and mmalloc/ from the gdb/ section. Update GDB's URL.
2004-12-09* MAINTAINERS: List 'depcomp' as part of automake.Jim Blandy
2004-12-03Remove config.if.Richard Sandiford
2004-06-09Include Makefile.*, not just Makefile.in, in the top-level policy.Ben Elliston
2004-06-09Update with respect to DejaGnu and Expect.Ben Elliston
2004-04-14Typo fix: s/otheriwse/otherwise/Ben Elliston
2004-04-13Update libtool entry.Ben Elliston
2004-03-25 Remove MPW support, no longer used.Stan Shebs
* mpw-README, mpw-build.in, mpw-config.in, mpw-configure, mpw-install: Remove files. * src-release (DEVO_SUPPORT): Remove names of removed files. * MAINTAINERS: Likewise.
2003-08-23Revise DejaGnu patch submission guidelines.Ben Elliston
2003-08-15Add 'src-release'. 'src-release' was carved out of 'Makefile.in',Michael Chastain
so use the same policy for it.
2003-05-032003-05-02 Andrew Cagney <cagney@redhat.com>Andrew Cagney
* New file.
2002-07-192002-07-19 Chris Demetriou <cgd@broadcom.com>Chris Demetriou
* MAINTAINERS: Clarify updates of config.guess and config.sub, and add one instance of them which was missed to the list to update.
2002-04-07* MAINTAINERS: Update dejagnu/Andrew Cagney
2002-01-162002-01-16 H.J. Lu (hjl@gnu.org)H.J. Lu
* config.guess: Import from master sources, rev 1.225. * config.sub: Import from master sources, rev 1.238. * MAINTAINERS: Updated notes on config.guess and config.sub.
2002-01-02 * MAINTAINERS: Update URL for config.* scripts.Ben Elliston
2001-12-05gcc adopts symlink-tree, refer more to libiberty.Nick Clifton
symlink-tree: handle DOS-style absolute paths.
2001-07-26* MAINTAINERS: Clarify libiberty merge rules and procedures.DJ Delorie
2001-07-20Clone src/config.guess. Mention in MAINTAINERS.Andrew Cagney
2001-07-17* no need to inform sid@sourceware about dejagnu patches.Frank Ch. Eigler
2001-07-17Update local local copies of config.sub and config.guess.Andrew Cagney
Mention those files in MAINTAINERS.
2001-01-16General cleanup.Andrew Cagney
2001-01-16Clarify dejagnuAndrew Cagney
2000-12-07* add sid/ delegationFrank Ch. Eigler
2000-10-24Add mail submission addresses for autoconf and config.{guess,sub}.Ben Elliston
2000-07-28* s/sourceware.cygnus.com/sources.redhat.com/ throughoutFrank Ch. Eigler
* added cgen/
2000-07-27Clarify texinfo/Andrew Cagney
2000-05-18Typo. bfd@sourceware -> binutils@sourceware.Andrew Cagney
2000-04-03Update winsup stuff.Christopher Faylor
2000-04-03For want of something better. List where to go to when wanting toAndrew Cagney
make a toplevel change.