• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

bfd/31-Dec-2022-466,638339,711

binutils/31-Dec-2022-153,575119,096

config/29-Aug-2021-3,4382,873

cpu/29-Aug-2021-14,09912,616

etc/29-Aug-2021-9,3327,387

gas/29-Aug-2021-360,655269,133

gdb/07-Feb-2025-859,556597,724

gprof/29-Aug-2021-26,09019,903

include/29-Aug-2021-61,78436,659

intl/29-Aug-2021-8,7346,453

ld/31-Dec-2022-92,11773,353

opcodes/29-Aug-2021-169,151133,270

COPYINGD12-Sep-200017.6 KiB341281

COPYING.LIBD12-Sep-200024.7 KiB

Makefile.bsd-wrapperD07-Feb-20252.9 KiB11487

Makefile.defD02-Nov-20048.1 KiB211197

Makefile.inD14-Jan-2008724.6 KiB23,66820,289

Makefile.tplD02-Nov-200447.3 KiB1,4361,045

READMED12-Sep-20001.7 KiB4835

config-ml.inD02-Nov-200424.1 KiB878823

config.guessD16-Apr-200541.3 KiB1,4071,208

config.ifD02-Nov-20041 KiB3824

config.subD02-Nov-200430.3 KiB1,5461,405

configureD05-Jul-2013139 KiB4,4443,475

configure.inD05-Jul-201370.3 KiB2,1682,000

gettext.m4D02-Nov-200411.1 KiB345308

install-shD02-Nov-20047 KiB295169

libtool.m4D17-May-200429.5 KiB894820

ltcf-c.shD17-May-200431.9 KiB825611

ltcf-cxx.shD17-May-200436.2 KiB1,022675

ltcf-gcj.shD17-May-200426.7 KiB652454

ltconfigD02-Nov-200484 KiB2,8342,050

ltmain.shD17-May-2004152.6 KiB5,4704,256

makefile.vmsD12-Sep-20001.1 KiB7254

md5.sumD02-Nov-2004364.8 KiB5,9325,931

missingD02-Nov-200410 KiB337263

mkdepD12-Sep-20002.1 KiB8839

mkinstalldirsD02-Nov-20041.9 KiB11285

move-if-changeD12-Sep-2000880 3314

setup.comD29-May-1997220 98

src-releaseD02-Nov-200412.2 KiB337304

symlink-treeD02-Nov-20042.2 KiB7936

ylwrapD12-Sep-20003.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