Blame README

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