NameDateSize

..22-Mar-202310

ar-libH A D13-Sep-20205.7 KiB

bfd/H29-Jun-2023436

binutils/H22-Mar-2023127

ChangeLogH A D22-Mar-2023500.2 KiB

compileH A D12-Oct-20167.2 KiB

config/H22-Mar-2023102

config-ml.inH A D14-Sep-202024.6 KiB

config.guessH A D22-Mar-202347.4 KiB

config.rpathH A D12-Oct-201614.6 KiB

config.subH A D22-Mar-202330.9 KiB

configureH A D22-Mar-2023467.7 KiB

configure.acH A D22-Mar-2023111.8 KiB

contrib/H22-Mar-20236

COPYINGH A D12-Oct-201617.6 KiB

COPYING.LIBH A D12-Oct-201624.7 KiB

COPYING.LIBGLOSSH A D21-Mar-202316.7 KiB

COPYING.NEWLIBH A D21-Mar-202345.2 KiB

COPYING3H A D12-Oct-201634.3 KiB

COPYING3.LIBH A D12-Oct-20167.5 KiB

cpu/H22-Mar-202354

depcompH A D12-Oct-201621.9 KiB

djunpack.batH A D22-Mar-20231.8 KiB

elfcpp/H22-Mar-202324

etc/H22-Mar-202311

gas/H22-Mar-2023111

gdb/H03-May-2024863

gdbserver/H22-Mar-202395

gdbsupport/H22-Mar-2023137

gnulib/H22-Mar-202314

gold/H22-Mar-2023142

gprof/H22-Mar-202381

include/H03-May-202476

install-shH A D12-Oct-201614.3 KiB

intl/H22-Mar-202345

ld/H22-Mar-202397

libctf/H22-Mar-202338

libdecnumber/H22-Mar-202342

libiberty/H22-Mar-2023158

libtool.m4H A D14-Sep-2020257.7 KiB

ltgcc.m4H A D12-Oct-20161.7 KiB

ltmain.shH A D12-Oct-2016243.9 KiB

ltoptions.m4H A D12-Oct-201611.7 KiB

ltsugar.m4H A D12-Oct-20164.3 KiB

ltversion.m4H A D12-Oct-2016703

lt~obsolete.m4H A D12-Oct-20166 KiB

MAINTAINERSH A D22-Mar-20233.9 KiB

Makefile.defH A D22-Mar-202329.9 KiB

Makefile.inH A D22-Mar-20231.7 MiB

Makefile.tplH A D14-Sep-202069.7 KiB

makefile.vmsH A D21-Mar-20231.1 KiB

missingH A D12-Oct-20166.7 KiB

mkdepH A D12-Oct-20162.1 KiB

mkinstalldirsH A D12-Oct-20163.5 KiB

move-if-changeH A D12-Oct-20162.6 KiB

multilib.amH A D21-Mar-20231.6 KiB

opcodes/H22-Mar-2023315

readline/H03-May-202411

READMEH A D12-Oct-20161.7 KiB

README-maintainer-modeH A D14-Sep-2020963

setup.comH A D21-Mar-20231 KiB

sim/H22-Mar-202344

src-release.shH A D22-Mar-202310.1 KiB

symlink-treeH A D12-Oct-20162.2 KiB

test-driverH A D13-Sep-20204.5 KiB

texinfo/H22-Dec-20164

ylwrapH A D12-Oct-20166.3 KiB

zlib/H03-May-202466

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  ftp://ftp.gnu.org/gnu/autoconf
9  ftp://ftp.gnu.org/gnu/automake
10  ftp://ftp.gnu.org/gnu/libtool
11  ftp://ftp.gnu.org/gnu/gettext
12
13The required versions of the tools for this tree are
14  autoconf 2.69
15  automake 1.15.1
16  libtool 2.2.6
17  gettext 0.14.5
18
19Note - "make distclean" does not work with maintainer mode enabled.
20The Makefiles in the some of the po/ subdirectories depend upon the
21Makefiles in their parent directories, and distclean will delete the
22Makefiles in the parent directories before running the Makefiles in
23the child directories.  There is no easy way around this (short of
24changing the automake macros) as these dependencies need to exist in
25order to correctly build the NLS files.
26