Home | History | Annotate | only in /toolchain/binutils/binutils-2.27
Up to higher level directory
NameDateSize
.gitattributes21-Aug-2018613
bfd/21-Aug-2018
binutils/21-Aug-2018
ChangeLog21-Aug-2018482.9K
compile21-Aug-20187.2K
config/21-Aug-2018
config-ml.in21-Aug-201825.1K
config.guess21-Aug-201842.7K
config.rpath21-Aug-201814.6K
config.sub21-Aug-201835.3K
configure21-Aug-2018475.7K
configure.ac21-Aug-2018111.2K
COPYING21-Aug-201817.6K
COPYING.LIB21-Aug-201824.7K
COPYING.LIBGLOSS21-Aug-201816.7K
COPYING.NEWLIB21-Aug-201845.2K
COPYING321-Aug-201834.3K
COPYING3.LIB21-Aug-20187.5K
cpu/21-Aug-2018
depcomp21-Aug-201821.9K
djunpack.bat21-Aug-20181.8K
elfcpp/21-Aug-2018
etc/21-Aug-2018
gas/21-Aug-2018
gold/21-Aug-2018
gprof/21-Aug-2018
include/21-Aug-2018
install-sh21-Aug-201814.3K
intl/21-Aug-2018
ld/21-Aug-2018
libiberty/21-Aug-2018
libtool.m421-Aug-2018257.6K
ltgcc.m421-Aug-20181.7K
ltmain.sh21-Aug-2018243.9K
ltoptions.m421-Aug-201811.7K
ltsugar.m421-Aug-20184.3K
ltversion.m421-Aug-2018703
lt~obsolete.m421-Aug-20186K
MAINTAINERS21-Aug-20183.8K
Makefile.def21-Aug-201829.4K
Makefile.in21-Aug-20181.6M
Makefile.tpl21-Aug-201868.4K
makefile.vms21-Aug-20181.1K
missing21-Aug-20186.7K
mkdep21-Aug-20182.1K
mkinstalldirs21-Aug-20183.5K
move-if-change21-Aug-20182.6K
opcodes/21-Aug-2018
README21-Aug-20181.7K
README-maintainer-mode21-Aug-2018961
setup.com21-Aug-20181K
src-release.sh21-Aug-20188.9K
symlink-tree21-Aug-20182.2K
texinfo/21-Aug-2018
ylwrap21-Aug-20186.3K
zlib/21-Aug-2018

README

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

README-maintainer-mode

      1 
      2                 Notes on enabling maintainer mode
      3 
      4 Note that if you configure with --enable-maintainer-mode, you will need
      5 special versions of automake, autoconf, libtool and gettext. You will
      6 find the sources for these in the respective upstream directories:
      7 
      8   ftp://ftp.gnu.org/gnu/autoconf
      9   ftp://ftp.gnu.org/gnu/automake
     10   ftp://ftp.gnu.org/gnu/libtool
     11   ftp://ftp.gnu.org/gnu/gettext
     12 
     13 The required versions of the tools for this tree are
     14   autoconf 2.64
     15   automake 1.11
     16   libtool 2.2.6
     17   gettext 0.14.5
     18 
     19 Note - "make distclean" does not work with maintainer mode enabled.
     20 The Makefiles in the some of the po/ subdirectories depend upon the
     21 Makefiles in their parent directories, and distclean will delete the
     22 Makefiles in the parent directories before running the Makefiles in
     23 the child directories.  There is no easy way around this (short of
     24 changing the automake macros) as these dependencies need to exist in
     25 order to correctly build the NLS files.
     26