Home | History | Annotate | only in /src/external/gpl3/binutils.old/dist
Up to higher level directory
NameDateSize
ar-lib03-Apr-20205.7K
bfd/25-Feb-2026
binutils/Today
ChangeLog10-Feb-2026529K
ChangeLog.git10-Feb-202610.4M
compile14-Apr-20187.2K
config/25-Feb-2026
config-ml.in24-Aug-202525.2K
config.guess10-Feb-202649.6K
config.rpath14-Apr-201814.6K
config.sub10-Feb-202638.8K
configure10-Feb-2026595.2K
configure.ac10-Feb-2026128.3K
COPYING14-Apr-201817.6K
COPYING.LIB14-Apr-201824.7K
COPYING314-Apr-201834.3K
COPYING3.LIB14-Apr-20187.5K
cpu/25-Feb-2026
depcomp14-Apr-201821.9K
etc/25-Feb-2026
gas/Today
gprof/25-Feb-2026
gprofng/25-Feb-2026
include/Today
install-sh14-Apr-201814.3K
ld/Today
libctf/25-Feb-2026
libiberty/Today
libsframe/25-Feb-2026
libtool.m424-Aug-2025259.9K
ltgcc.m414-Apr-20181.7K
ltmain.sh10-Feb-2026245.4K
ltoptions.m414-Apr-201811.7K
ltsugar.m414-Apr-20184.3K
ltversion.m414-Apr-2018703
lt~obsolete.m414-Apr-20186K
MAINTAINERS10-Feb-20263.9K
Makefile.def10-Feb-202634.6K
Makefile.in10-Feb-20262.3M
Makefile.tpl10-Feb-202676.3K
makefile.vms14-Apr-20181.1K
missing14-Apr-20186.7K
mkdep14-Apr-20182.1K
mkinstalldirs14-Apr-20183.5K
move-if-change14-Apr-20182.6K
multilib.am24-Aug-20251.6K
NEWS10-Feb-20267K
opcodes/25-Feb-2026
README14-Apr-20181.7K
README-maintainer-mode24-Aug-20251.1K
SECURITY.txt24-Aug-2025210
setup.com14-Apr-20181K
sha256.sum10-Feb-20262.8M
src-release.sh10-Feb-202613.2K
symlink-tree14-Apr-20182.2K
test-driver03-Apr-20204.5K
texinfo/25-Feb-2026
ylwrap14-Apr-20186.3K
zlib/Today

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   https://ftp.gnu.org/gnu/autoconf
      9   https://ftp.gnu.org/gnu/automake
     10   https://ftp.gnu.org/gnu/libtool
     11   https://ftp.gnu.org/gnu/gettext
     12 
     13 The required versions of the tools for this tree are:
     14 
     15   autoconf 2.69
     16   automake 1.15.1
     17   libtool 2.2.6
     18   gettext 0.16.1
     19 
     20 Note - "make distclean" does not work with maintainer mode enabled.
     21 The Makefiles in the some of the po/ subdirectories depend upon the
     22 Makefiles in their parent directories, and distclean will delete the
     23 Makefiles in the parent directories before running the Makefiles in
     24 the child directories.  There is no easy way around this (short of
     25 changing the automake macros) as these dependencies need to exist in
     26 order to correctly build the NLS files.
     27 
     28 When running the testsuites a minimum version of dejagnu is also needed.
     29 Dejagnu can be found here:
     30 
     31   https://ftp.gnu.org/gnu/dejagnu/
     32 
     33 The minimum version required is:
     34 
     35   dejagnu 1.5.3
     36