NameDateSize

..06-May-202087

config-ml.inH A D18-Aug-201624.1 KiB

COPYINGH A D18-Aug-201617.6 KiB

COPYING.LIBH A D18-Aug-201624.7 KiB

djunpack.batH A D18-Aug-20161.8 KiB

FREEBSD-diffsH A D18-Aug-201632.8 KiB

FREEBSD-upgradeH A D18-Aug-2016320

FREEBSD-XlistH A D18-Aug-20161.3 KiB

gdb/H20-Dec-2016482

gettext.m4H A D18-Aug-201611.1 KiB

include/H20-Dec-201642

install-shH A D18-Aug-20169 KiB

libtool.m4H A D18-Aug-201629.5 KiB

ltcf-c.shH A D18-Aug-201631.9 KiB

ltcf-cxx.shH A D18-Aug-201636.2 KiB

ltcf-gcj.shH A D18-Aug-201626.7 KiB

ltconfigH A D18-Aug-201684 KiB

ltmain.shH A D18-Aug-2016152.6 KiB

md5.sumH A D18-Aug-2016309.8 KiB

missingH A D18-Aug-201610 KiB

mkinstalldirsH A D18-Aug-20163.3 KiB

move-if-changeH A D18-Aug-2016880

READMEH A D18-Aug-20161.7 KiB

src-releaseH A D18-Aug-201612.2 KiB

symlink-treeH A D18-Aug-20162.2 KiB

ylwrapH A D18-Aug-20163.2 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