NameDateSize

..17-May-201985

bfd/H17-May-2019199

binutils/H17-May-201990

ChangeLogH A D17-May-2019376.5 KiB

config/H17-May-201928

config-ml.inH A D17-May-201925.4 KiB

config.guessH A D17-May-201943.5 KiB

config.rpathH A D17-May-201914.6 KiB

config.subH A D17-May-201932 KiB

configureH A D17-May-2019377 KiB

configure.acH A D17-May-201985.9 KiB

etc/H17-May-20194

FREEBSD-deletelistH A D17-May-20191,005

FREEBSD-upgradeH A D17-May-20192.1 KiB

FREEBSD-XlistH A D17-May-20191 KiB

gas/H17-May-201987

gprof/H17-May-20194

include/H17-May-201936

install-shH A D17-May-20199 KiB

ld/H17-May-201965

libiberty/H17-May-2019105

libtool.m4H A D17-May-2019248.4 KiB

ltgcc.m4H A D17-May-20191.7 KiB

ltmain.shH A D17-May-2019207.9 KiB

ltoptions.m4H A D17-May-201910.2 KiB

ltsugar.m4H A D17-May-20193.5 KiB

ltversion.m4H A D17-May-2019711

MAINTAINERSH A D17-May-20194.1 KiB

Makefile.defH A D17-May-201923.5 KiB

Makefile.inH A D17-May-20191.5 MiB

Makefile.tplH A D17-May-201956 KiB

missingH A D17-May-201910.8 KiB

mkinstalldirsH A D17-May-20193.4 KiB

move-if-changeH A D17-May-2019384

opcodes/H17-May-201988

READMEH A D17-May-20191.7 KiB

README-maintainer-modeH A D17-May-2019713

symlink-treeH A D17-May-20192.2 KiB

ylwrapH A D17-May-20196 KiB

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