summaryrefslogtreecommitdiff
path: root/MAINTAINERS
Commit message (Collapse)AuthorAgeFilesLines
* MAINTAINERS: Update path to readline config.{sub,guess} filesMaciej W. Rozycki2021-05-241-1/+1
| | | | | | | | 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.
* Move gdbserver to top levelTom Tromey2020-02-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Move gdbsupport to the top levelTom Tromey2020-01-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Move gnulib to top levelTom Tromey2019-06-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Add libctf to top-level MAINTAINERS; add myself as CTF maintainer.Nick Alcock2019-05-281-1/+1
|
* Update description of ownership of files in include/Doug Evans2014-11-041-1/+4
|
* MAINTAINERS: clarify policy with config/ (and other top level files)Mike Frysinger2012-05-121-8/+2
| | | | | | | | | | 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>
* Import move-if-change script from gnulib.Ralf Wildenhues2011-02-121-7/+3
| | | | | | | | /: PR binutils/12283 * MAINTAINERS (mkinstalldirs): Comes from Automake. (move-if-change): Comes from gnulib. * move-if-change: Import version from gnulib.
* * MAINTAINERS: Perform some obvious fixups.Christopher Faylor2009-08-191-25/+22
|
* * MAINTAINERS: Replace reference to configure.in with reference to configure.ac.Nick Clifton2008-04-181-1/+1
|
* Add elfcpp, gold directories.Ben Elliston2008-03-241-1/+3
|
* * src-release (GDB_SUPPORT_DIRS): Add libdecnumber.Daniel Jacobowitz2007-10-111-0/+4
| | | | * libdecnumber: New directory, imported from GCC.
* 2006-05-22 Steve Ellcey <sje@cup.hp.com>Steve Ellcey2006-05-221-7/+7
| | | | | | * MAINTAINERS: Change intl updating instructions. * config.rpath: Copy from GCC tree. * intl: Replace contents of intl directory with intl from GCC tree.
* Update information about: config-ml.in; makefile.vms; mkdep; setup.com;Nick Clifton2006-03-011-4/+16
| | | | | etc/; intl/; utils/; compile; depcomp; install-sh; missing; ylwrap; config/
* Remove dejagnu/ entry.Ben Elliston2005-06-291-4/+0
|
* 2005-02-08 Andrew Cagney <cagney@gnu.org>Andrew Cagney2005-02-081-3/+3
| | | | | * MAINTAINERS: Delete reference to dejagnu/ and mmalloc/ from the gdb/ section. Update GDB's URL.
* * MAINTAINERS: List 'depcomp' as part of automake.Jim Blandy2004-12-091-0/+3
|
* Remove config.if.Richard Sandiford2004-12-031-1/+1
|
* Include Makefile.*, not just Makefile.in, in the top-level policy.Ben Elliston2004-06-091-1/+1
|
* Update with respect to DejaGnu and Expect.Ben Elliston2004-06-091-10/+4
|
* Typo fix: s/otheriwse/otherwise/Ben Elliston2004-04-141-1/+1
|
* Update libtool entry.Ben Elliston2004-04-131-2/+2
|
* Remove MPW support, no longer used.Stan Shebs2004-03-251-2/+1
| | | | | | | * 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.
* Revise DejaGnu patch submission guidelines.Ben Elliston2003-08-231-6/+6
|
* Add 'src-release'. 'src-release' was carved out of 'Makefile.in',Michael Chastain2003-08-151-1/+1
| | | | so use the same policy for it.
* 2003-05-02 Andrew Cagney <cagney@redhat.com>Andrew Cagney2003-05-031-1/+1
| | | | * New file.
* 2002-07-19 Chris Demetriou <cgd@broadcom.com>Chris Demetriou2002-07-191-2/+3
| | | | | * MAINTAINERS: Clarify updates of config.guess and config.sub, and add one instance of them which was missed to the list to update.
* * MAINTAINERS: Update dejagnu/Andrew Cagney2002-04-071-3/+6
|
* 2002-01-16 H.J. Lu (hjl@gnu.org)H.J. Lu2002-01-161-0/+3
| | | | | | | * 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.
* * MAINTAINERS: Update URL for config.* scripts.Ben Elliston2002-01-021-1/+1
|
* gcc adopts symlink-tree, refer more to libiberty.Nick Clifton2001-12-051-2/+6
| | | | symlink-tree: handle DOS-style absolute paths.
* * MAINTAINERS: Clarify libiberty merge rules and procedures.DJ Delorie2001-07-261-1/+5
|
* Clone src/config.guess. Mention in MAINTAINERS.Andrew Cagney2001-07-201-1/+2
|
* * no need to inform sid@sourceware about dejagnu patches.Frank Ch. Eigler2001-07-171-3/+2
|
* Update local local copies of config.sub and config.guess.Andrew Cagney2001-07-171-1/+1
| | | | Mention those files in MAINTAINERS.
* General cleanup.Andrew Cagney2001-01-161-31/+35
|
* Clarify dejagnuAndrew Cagney2001-01-161-6/+11
|
* * add sid/ delegationFrank Ch. Eigler2000-12-071-0/+4
|
* Add mail submission addresses for autoconf and config.{guess,sub}.Ben Elliston2000-10-241-0/+2
|
* * s/sourceware.cygnus.com/sources.redhat.com/ throughoutFrank Ch. Eigler2000-07-281-16/+22
| | | | * added cgen/
* Clarify texinfo/Andrew Cagney2000-07-271-3/+9
|
* Typo. bfd@sourceware -> binutils@sourceware.Andrew Cagney2000-05-181-1/+1
|
* Update winsup stuff.Christopher Faylor2000-04-031-1/+2
|
* For want of something better. List where to go to when wanting toAndrew Cagney2000-04-031-0/+75
make a toplevel change.