119370Spst		   README for GNU development tools
219370Spst
319370SpstThis directory contains various GNU compilers, assemblers, linkers, 
419370Spstdebuggers, etc., plus their support routines, definitions, and documentation.
519370Spst
619370SpstIf you are receiving this as part of a GDB release, see the file gdb/README.
746283SdfrIf with a binutils release, see binutils/README;  if with a libg++ release,
819370Spstsee libg++/README, etc.  That'll give you info about this
919370Spstpackage -- supported targets, how to use it, how to report bugs, etc.
1019370Spst
1119370SpstIt is now possible to automatically configure and build a variety of
1219370Spsttools with one command.  To build all of the tools contained herein,
1319370Spstrun the ``configure'' script here, e.g.:
1419370Spst
1519370Spst	./configure 
1619370Spst	make
1719370Spst
1819370SpstTo install them (by default in /usr/local/bin, /usr/local/lib, etc),
1919370Spstthen do:
2019370Spst	make install
2119370Spst
2246283Sdfr(If the configure script can't determine your type of computer, give it
2319370Spstthe name as an argument, for instance ``./configure sun4''.  You can
2419370Spstuse the script ``config.sub'' to test whether a name is recognized; if
2519370Spstit is, config.sub translates it to a triplet specifying CPU, vendor,
2619370Spstand OS.)
2719370Spst
2819370SpstIf you have more than one compiler on your system, it is often best to
2919370Spstexplicitly set CC in the environment before running configure, and to
3019370Spstalso set CC when running make.  For example (assuming sh/bash/ksh):
3119370Spst
3219370Spst	CC=gcc ./configure
3346283Sdfr	make
3419370Spst
3519370SpstA similar example using csh:
3619370Spst
3719370Spst	setenv CC gcc
3819370Spst	./configure
3946283Sdfr	make
4019370Spst
4119370SpstMuch of the code and documentation enclosed is copyright by
4219370Spstthe Free Software Foundation, Inc.  See the file COPYING or
4319370SpstCOPYING.LIB in the various directories, for a description of the
4419370SpstGNU General Public License terms under which you can copy the files.
4519370Spst
4646283SdfrREPORTING BUGS: Again, see gdb/README, binutils/README, etc., for info
4746283Sdfron where and how to report problems.
48