Name Date Size #Lines LOC

..--

gdb/H26-Jul-2015-456,781309,666

include/H26-Jul-2015-9,9524,878

COPYINGHD26-Jul-201517.6 KiB341281

COPYING.LIBHD26-Jul-201524.7 KiB

FREEBSD-XlistHD26-Jul-20151.3 KiB7877

FREEBSD-diffsHD26-Jul-201532.8 KiB966939

FREEBSD-upgradeHD26-Jul-2015320 106

READMEHD26-Jul-20151.7 KiB4835

config-ml.inHD26-Jul-201524.1 KiB878823

djunpack.batHD26-Jul-20151.8 KiB5352

gettext.m4HD26-Jul-201511.1 KiB345308

install-shHD26-Jul-20159 KiB317185

libtool.m4HD26-Jul-201529.5 KiB894820

ltcf-c.shHD26-Jul-201531.9 KiB825611

ltcf-cxx.shHD26-Jul-201536.2 KiB1,022675

ltcf-gcj.shHD26-Jul-201526.7 KiB652454

ltconfigHD26-Jul-201584 KiB2,8342,050

ltmain.shHD26-Jul-2015152.6 KiB5,4704,256

md5.sumHD26-Jul-2015309.8 KiB5,3315,330

missingHD26-Jul-201510 KiB337263

mkinstalldirsHD26-Jul-20153.3 KiB151102

move-if-changeHD26-Jul-2015880 3314

src-releaseHD26-Jul-201512.2 KiB337304

symlink-treeHD26-Jul-20152.2 KiB7936

ylwrapHD26-Jul-20153.2 KiB12467

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