Blame README

Packit 7cb7d8
		   README for GNU development tools
Packit 7cb7d8
Packit 7cb7d8
This directory contains various GNU compilers, assemblers, linkers, 
Packit 7cb7d8
debuggers, etc., plus their support routines, definitions, and documentation.
Packit 7cb7d8
Packit 7cb7d8
If you are receiving this as part of a GDB release, see the file gdb/README.
Packit 7cb7d8
If with a binutils release, see binutils/README;  if with a libg++ release,
Packit 7cb7d8
see libg++/README, etc.  That'll give you info about this
Packit 7cb7d8
package -- supported targets, how to use it, how to report bugs, etc.
Packit 7cb7d8
Packit 7cb7d8
It is now possible to automatically configure and build a variety of
Packit 7cb7d8
tools with one command.  To build all of the tools contained herein,
Packit 7cb7d8
run the ``configure'' script here, e.g.:
Packit 7cb7d8
Packit 7cb7d8
	./configure 
Packit 7cb7d8
	make
Packit 7cb7d8
Packit 7cb7d8
To install them (by default in /usr/local/bin, /usr/local/lib, etc),
Packit 7cb7d8
then do:
Packit 7cb7d8
	make install
Packit 7cb7d8
Packit 7cb7d8
(If the configure script can't determine your type of computer, give it
Packit 7cb7d8
the name as an argument, for instance ``./configure sun4''.  You can
Packit 7cb7d8
use the script ``config.sub'' to test whether a name is recognized; if
Packit 7cb7d8
it is, config.sub translates it to a triplet specifying CPU, vendor,
Packit 7cb7d8
and OS.)
Packit 7cb7d8
Packit 7cb7d8
If you have more than one compiler on your system, it is often best to
Packit 7cb7d8
explicitly set CC in the environment before running configure, and to
Packit 7cb7d8
also set CC when running make.  For example (assuming sh/bash/ksh):
Packit 7cb7d8
Packit 7cb7d8
	CC=gcc ./configure
Packit 7cb7d8
	make
Packit 7cb7d8
Packit 7cb7d8
A similar example using csh:
Packit 7cb7d8
Packit 7cb7d8
	setenv CC gcc
Packit 7cb7d8
	./configure
Packit 7cb7d8
	make
Packit 7cb7d8
Packit 7cb7d8
Much of the code and documentation enclosed is copyright by
Packit 7cb7d8
the Free Software Foundation, Inc.  See the file COPYING or
Packit 7cb7d8
COPYING.LIB in the various directories, for a description of the
Packit 7cb7d8
GNU General Public License terms under which you can copy the files.
Packit 7cb7d8
Packit 7cb7d8
REPORTING BUGS: Again, see gdb/README, binutils/README, etc., for info
Packit 7cb7d8
on where and how to report problems.