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

..03-May-2022-

bfd/H03-May-2022-680,177504,418

cgen/cpu/H18-Aug-2011-45,38940,617

config/H03-May-2022-10,6659,272

cpu/H03-May-2022-45,38940,617

etc/H07-May-2022-21,59116,915

gdb/H03-May-2022-1,291,348917,268

include/H03-May-2022-79,38847,569

intl/H03-May-2022-18,81814,294

libdecnumber/H03-May-2022-39,92029,292

libiberty/H07-May-2022-71,94851,301

opcodes/H03-May-2022-483,422396,968

readline/H03-May-2022-75,19057,187

sim/H03-May-2022-1,108,388915,631

texinfo/H03-May-2022-9,2928,559

COPYINGH A D14-Jul-200517.6 KiB341281

COPYING3H A D17-Jul-200734.3 KiB675553

ChangeLogH A D19-Aug-2011441.2 KiB14,2179,144

MAINTAINERSH A D12-Feb-20113.8 KiB12298

Makefile.defH A D24-Mar-201128.5 KiB631586

Makefile.inH A D04-Sep-20111.9 MiB61,15553,424

Makefile.tplH A D17-May-201166.1 KiB1,8811,398

READMEH A D03-May-19991.7 KiB4835

README-maintainer-modeH A D22-Aug-2009961 2620

compileH A D22-Aug-20093.6 KiB14479

config-ml.inH A D22-Mar-201124.8 KiB878819

config.guessH A D18-Mar-201143.3 KiB1,5121,300

config.rpathH A D13-Feb-201114.6 KiB544438

config.subH A D24-Mar-201134.4 KiB1,7591,607

configureH A D17-May-2011445.4 KiB15,19512,513

configure.acH A D04-Sep-2011101.5 KiB3,2272,940

depcompH A D22-Aug-200918.2 KiB631407

djunpack.batH A D04-Sep-20111.8 KiB5352

install-shH A D22-Aug-200913.3 KiB521344

libtool.m4H A D13-Feb-2011257.3 KiB7,4256,702

ltgcc.m4H A D29-Sep-20081.7 KiB6148

ltmain.shH A D13-Jan-2011243.9 KiB8,6376,651

ltoptions.m4H A D09-Jan-201011.7 KiB370304

ltsugar.m4H A D29-Sep-20084.3 KiB124100

ltversion.m4H A D09-Jan-2010703 2419

lt~obsolete.m4H A D09-Jan-20106 KiB9994

md5.sumH A D04-Sep-2011482.8 KiB7,9097,908

missingH A D22-Aug-200911.2 KiB377281

mkdepH A D08-Aug-19992.1 KiB8839

mkinstalldirsH A D22-Aug-20093.5 KiB163112

move-if-changeH A D12-Feb-20112.6 KiB8441

src-releaseH A D19-Aug-201110.5 KiB297266

symlink-treeH A D14-Jul-20052.2 KiB7936

ylwrapH A D22-Aug-20096 KiB223124

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 the respective upstream directories:
7
8  ftp://ftp.gnu.org/gnu/autoconf
9  ftp://ftp.gnu.org/gnu/automake
10  ftp://ftp.gnu.org/gnu/libtool
11  ftp://ftp.gnu.org/gnu/gettext
12
13The required versions of the tools for this tree are
14  autoconf 2.64
15  automake 1.11
16  libtool 2.2.6
17  gettext 0.14.5
18
19Note - "make distclean" does not work with maintainer mode enabled.
20The Makefiles in the some of the po/ subdirectories depend upon the
21Makefiles in their parent directories, and distclean will delete the
22Makefiles in the parent directories before running the Makefiles in
23the child directories.  There is no easy way around this (short of
24changing the automake macros) as these dependencies need to exist in
25order to correctly build the NLS files.
26