Blame README

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