README 1.7 KB

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