12159047fSniklas README for GNU development tools 22159047fSniklas 32159047fSniklasThis directory contains various GNU compilers, assemblers, linkers, 42159047fSniklasdebuggers, etc., plus their support routines, definitions, and documentation. 52159047fSniklas 62159047fSniklasIf you are receiving this as part of a GDB release, see the file gdb/README. 7*b305b0f1SespieIf with a binutils release, see binutils/README; if with a libg++ release, 82159047fSniklassee libg++/README, etc. That'll give you info about this 92159047fSniklaspackage -- supported targets, how to use it, how to report bugs, etc. 102159047fSniklas 112159047fSniklasIt is now possible to automatically configure and build a variety of 122159047fSniklastools with one command. To build all of the tools contained herein, 132159047fSniklasrun the ``configure'' script here, e.g.: 142159047fSniklas 152159047fSniklas ./configure 162159047fSniklas make 172159047fSniklas 18c88b1d6cSniklasTo install them (by default in /usr/local/bin, /usr/local/lib, etc), 19c88b1d6cSniklasthen do: 20c88b1d6cSniklas make install 21c88b1d6cSniklas 22*b305b0f1Sespie(If the configure script can't determine your type of computer, give it 232159047fSniklasthe name as an argument, for instance ``./configure sun4''. You can 242159047fSniklasuse the script ``config.sub'' to test whether a name is recognized; if 252159047fSniklasit is, config.sub translates it to a triplet specifying CPU, vendor, 262159047fSniklasand OS.) 272159047fSniklas 282159047fSniklasIf you have more than one compiler on your system, it is often best to 292159047fSniklasexplicitly set CC in the environment before running configure, and to 302159047fSniklasalso set CC when running make. For example (assuming sh/bash/ksh): 312159047fSniklas 322159047fSniklas CC=gcc ./configure 33*b305b0f1Sespie make 342159047fSniklas 352159047fSniklasA similar example using csh: 362159047fSniklas 372159047fSniklas setenv CC gcc 382159047fSniklas ./configure 39*b305b0f1Sespie make 402159047fSniklas 41c88b1d6cSniklasMuch of the code and documentation enclosed is copyright by 42c88b1d6cSniklasthe Free Software Foundation, Inc. See the file COPYING or 43c88b1d6cSniklasCOPYING.LIB in the various directories, for a description of the 44c88b1d6cSniklasGNU General Public License terms under which you can copy the files. 452159047fSniklas 46*b305b0f1SespieREPORTING BUGS: Again, see gdb/README, binutils/README, etc., for info 47*b305b0f1Sespieon where and how to report problems. 48