Name Date Size #Lines LOC

..--

bfd/H08-Jul-2024-521,915382,211

binutils/H08-Jul-2024-176,318139,002

config/H20-Feb-2020-6,6105,735

cpu/H20-Feb-2020-40,93136,592

etc/H20-Feb-2020-10,7838,541

gas/H23-Jun-2021-385,733290,763

gprof/H20-Feb-2020-34,03526,627

include/H08-Jul-2024-63,68737,893

intl/H20-Feb-2020-8,7626,472

ld/H08-Jul-2024-111,46789,458

opcodes/H08-Jul-2024-366,702294,623

texinfo/H20-Feb-2020-6,9326,342

COPYINGH A D20-Feb-202017.6 KiB341281

COPYING.LIBHD20-Feb-202024.7 KiB

Makefile.bsd-wrapperH A D08-Jul-20244.5 KiB177134

Makefile.defH A D20-Feb-202021.5 KiB501460

Makefile.inH A D20-Feb-20201.2 MiB41,08735,333

Makefile.tplH A D20-Feb-202056.2 KiB1,6141,179

READMEH A D20-Feb-20201.7 KiB4835

config-ml.inH A D20-Feb-202025.3 KiB907850

config.guessH A D20-Feb-202042.9 KiB1,4801,269

config.subH A D20-Feb-202031.5 KiB1,6071,464

configureH A D20-Feb-2020231.5 KiB7,6576,283

configure.inH A D20-Feb-202078 KiB2,4152,202

gettext.m4H A D20-Feb-202011.2 KiB347310

install-shH A D20-Feb-20209 KiB324189

libtool.m4H A D20-Feb-202032.3 KiB993910

ltcf-c.shH A D20-Feb-202031.9 KiB829614

ltcf-cxx.shH A D20-Feb-202036.3 KiB1,025678

ltcf-gcj.shH A D20-Feb-202026.8 KiB652454

ltconfigH A D20-Feb-202084.6 KiB2,8572,071

ltmain.shH A D20-Feb-2020154.2 KiB5,5284,301

makefile.vmsH A D20-Feb-20201.1 KiB7254

md5.sumH A D20-Feb-2020451.1 KiB7,2547,253

missingH A D20-Feb-202010.8 KiB361268

mkdepH A D20-Feb-20202.1 KiB8839

mkinstalldirsH A D20-Feb-20203.4 KiB159109

move-if-changeH A D20-Feb-2020384 2315

setup.comH A D20-Feb-2020191 87

src-releaseH A D20-Feb-202010.6 KiB298267

symlink-treeH A D20-Feb-20202.2 KiB7936

ylwrapH A D20-Feb-20206 KiB224124

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