Name Date Size #Lines LOC

..--

bfd/H29-Jan-2025-885,943659,096

config/H29-Jan-2025-14,54612,434

contrib/H29-Jan-2025-1,3901,026

cpu/H29-Jan-2025-75,03067,137

etc/H29-Jan-2025-5,1403,959

gdb/H29-Jan-2025-1,969,5871,375,895

gdbserver/H29-Jan-2025-96,77069,862

gdbsupport/H29-Jan-2025-36,94424,498

gnulib/H29-Jan-2025-128,62596,077

include/H29-Jan-2025-117,04176,189

ld/emulparams/H09-Jul-2024-158123

libbacktrace/H29-Jan-2025-42,40432,904

libctf/H29-Jan-2025-49,95838,818

libdecnumber/H29-Jan-2025-40,24029,515

libiberty/H29-Jan-2025-80,24357,276

libsframe/H29-Jan-2025-22,00317,942

opcodes/H29-Jan-2025-737,376602,254

readline/H09-Jul-2024-103,31778,798

sim/H29-Jan-2025-1,263,5091,051,414

texinfo/H09-Jul-2024-9,2928,559

zlib/H29-Jan-2025-103,43080,807

COPYINGH A D09-Jul-202417.6 KiB341281

COPYING.LIBHD09-Jul-202424.7 KiB

COPYING3H A D09-Jul-202434.3 KiB675553

COPYING3.LIBHD09-Jul-20247.5 KiB

ChangeLogH A D29-Jan-2025528 KiB

MAINTAINERSH A D29-Jan-20253.9 KiB

Makefile.defH A D29-Jan-202534.6 KiB

Makefile.inH A D29-Jan-20252.3 MiB

Makefile.tplH A D29-Jan-202576.2 KiB

READMEH A D09-Jul-20241.7 KiB4835

README-maintainer-modeH A D09-Jul-20241.1 KiB3625

SECURITY.txtH A D29-Jan-2025210

ar-libH A D09-Jul-20245.7 KiB271210

compileH A D09-Jul-20247.2 KiB348258

config-ml.inH A D29-Jan-202525.2 KiB

config.guessH A D29-Jan-202549.4 KiB

config.rpathH A D09-Jul-202414.6 KiB544438

config.subH A D29-Jan-202535.6 KiB

configureH A D29-Jan-2025573.9 KiB

configure.acH A D29-Jan-2025124.4 KiB

depcompH A D09-Jul-202421.9 KiB757476

djunpack.batH A D29-Jan-20251.8 KiB

install-shH A D09-Jul-202414.3 KiB502327

libtool.m4H A D29-Jan-2025259.9 KiB

ltgcc.m4H A D09-Jul-20241.7 KiB6148

ltmain.shH A D29-Jan-2025243.9 KiB

ltoptions.m4H A D09-Jul-202411.7 KiB370304

ltsugar.m4H A D09-Jul-20244.3 KiB124100

ltversion.m4H A D09-Jul-2024703 2419

lt~obsolete.m4H A D09-Jul-20246 KiB9994

missingH A D09-Jul-20246.7 KiB216143

mkdepH A D09-Jul-20242.1 KiB8839

mkinstalldirsH A D09-Jul-20243.5 KiB163112

move-if-changeH A D09-Jul-20242.6 KiB8441

sha256.sumH A D29-Jan-20251.3 MiB

src-release.shH A D29-Jan-202510.8 KiB

symlink-treeH A D09-Jul-20242.2 KiB7936

test-driverH A D09-Jul-20244.5 KiB14987

ylwrapH A D09-Jul-20246.3 KiB233133

README

1		   README for GNU development tools
2
3This directory contains various GNU compilers, assemblers, linkers,
4debuggers, etc., plus their support routines, definitions, and documentation.
5
6If you are receiving this as part of a GDB release, see the file gdb/README.
7If with a binutils release, see binutils/README;  if with a libg++ release,
8see libg++/README, etc.  That'll give you info about this
9package -- supported targets, how to use it, how to report bugs, etc.
10
11It is now possible to automatically configure and build a variety of
12tools with one command.  To build all of the tools contained herein,
13run the ``configure'' script here, e.g.:
14
15	./configure
16	make
17
18To install them (by default in /usr/local/bin, /usr/local/lib, etc),
19then do:
20	make install
21
22(If the configure script can't determine your type of computer, give it
23the name as an argument, for instance ``./configure sun4''.  You can
24use the script ``config.sub'' to test whether a name is recognized; if
25it is, config.sub translates it to a triplet specifying CPU, vendor,
26and OS.)
27
28If you have more than one compiler on your system, it is often best to
29explicitly set CC in the environment before running configure, and to
30also set CC when running make.  For example (assuming sh/bash/ksh):
31
32	CC=gcc ./configure
33	make
34
35A similar example using csh:
36
37	setenv CC gcc
38	./configure
39	make
40
41Much of the code and documentation enclosed is copyright by
42the Free Software Foundation, Inc.  See the file COPYING or
43COPYING.LIB in the various directories, for a description of the
44GNU General Public License terms under which you can copy the files.
45
46REPORTING BUGS: Again, see gdb/README, binutils/README, etc., for info
47on where and how to report problems.
48

README-maintainer-mode

1
2                Notes on enabling maintainer mode
3
4Note that if you configure with --enable-maintainer-mode, you will need
5special versions of automake, autoconf, libtool and gettext. You will
6find the sources for these in the respective upstream directories:
7
8  https://ftp.gnu.org/gnu/autoconf
9  https://ftp.gnu.org/gnu/automake
10  https://ftp.gnu.org/gnu/libtool
11  https://ftp.gnu.org/gnu/gettext
12
13The required versions of the tools for this tree are:
14
15  autoconf 2.69
16  automake 1.15.1
17  libtool 2.2.6
18  gettext 0.16.1
19
20Note - "make distclean" does not work with maintainer mode enabled.
21The Makefiles in the some of the po/ subdirectories depend upon the
22Makefiles in their parent directories, and distclean will delete the
23Makefiles in the parent directories before running the Makefiles in
24the child directories.  There is no easy way around this (short of
25changing the automake macros) as these dependencies need to exist in
26order to correctly build the NLS files.
27
28When running the testsuites a minimum version of dejagnu is also needed.
29Dejagnu can be found here:
30
31  https://ftp.gnu.org/gnu/dejagnu/
32
33The minimum version required is:
34
35  dejagnu 1.5.3
36