Name Date Size #Lines LOC

..--

bfd/H26-Jul-2015-339,589247,692

binutils/H26-Jul-2015-121,30693,326

config/H26-Jul-2015-3,4932,825

etc/H26-Jul-2015-859570

gas/H26-Jul-2015-234,450177,127

gprof/H26-Jul-2015-1,5041,230

include/H26-Jul-2015-37,72621,802

ld/H26-Jul-2015-90,11071,185

libiberty/H26-Jul-2015-55,11538,886

opcodes/H26-Jul-2015-104,13385,173

ChangeLogHD26-Jul-2015376.5 KiB12,0437,624

FREEBSD-XlistHD26-Jul-2015984 118117

FREEBSD-deletelistHD26-Jul-2015921 116115

FREEBSD-upgradeHD26-Jul-20152 KiB5738

MAINTAINERSHD26-Jul-20154.1 KiB123101

Makefile.defHD26-Jul-201523.5 KiB537494

Makefile.inHD26-Jul-20151.5 MiB49,48642,982

Makefile.tplHD26-Jul-201556 KiB1,6161,186

READMEHD26-Jul-20151.7 KiB4835

README-maintainer-modeHD26-Jul-2015713 1511

config-ml.inHD26-Jul-201525.4 KiB913855

config.guessHD26-Jul-201543.5 KiB1,5171,305

config.rpathHD26-Jul-201514.6 KiB549443

config.subHD26-Jul-201532 KiB1,6271,483

configureHD26-Jul-2015377 KiB12,64910,510

configure.acHD26-Jul-201585.9 KiB2,6402,412

install-shHD26-Jul-20159 KiB324189

libtool.m4HD26-Jul-2015248.4 KiB7,1576,453

ltgcc.m4HD26-Jul-20151.7 KiB6148

ltmain.shHD26-Jul-2015207.9 KiB7,3885,682

ltoptions.m4HD26-Jul-201510.2 KiB343280

ltsugar.m4HD26-Jul-20153.5 KiB11291

ltversion.m4HD26-Jul-2015711 2419

missingHD26-Jul-201510.8 KiB361268

mkinstalldirsHD26-Jul-20153.4 KiB159109

move-if-changeHD26-Jul-2015384 2315

symlink-treeHD26-Jul-20152.2 KiB7936

ylwrapHD26-Jul-20156 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

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 ftp://sources.redhat.com/pub/binutils.
7
8Note - "make distclean" does not work with maintainer mode enabled.
9The Makefiles in the some of the po/ subdirectories depend upon the
10Makefiles in their parent directories, and distclean will delete the
11Makefiles in the parent directories before running the Makefiles in
12the child directories.  There is no easy way around this (short of
13changing the automake macros) as these dependencies need to exist in
14order to correctly build the NLS files.
15