old-cross-binutils/ld
Alan Modra ffc18d8a82 * ldmain.c (main): Remove mpc860c0 code.
* lexsup.c (enum option_values): Delete OPTION_MPC860C0.
	(ld_options): Delete mpc860c0 entry.
	(parse_args): Likewise.
2003-12-02 05:58:11 +00:00
..
emulparams Fix building for FreeBSD 2003-11-28 08:47:07 +00:00
emultempl * emultempl/elf32.em (gld${EMULATION_NAME}_before_allocation): Test 2003-12-01 06:28:56 +00:00
po
scripttempl Add initial support for TLS sections in PE format files. 2003-11-10 17:04:55 +00:00
testsuite * ld-sh/sh64/shmix-1.s: Add align to match data alignment. 2003-12-01 12:01:22 +00:00
acinclude.m4
aclocal.m4
ChangeLog * ldmain.c (main): Remove mpc860c0 code. 2003-12-02 05:58:11 +00:00
ChangeLog-9197
ChangeLog-9899
config.in
configure
configure.host * configure.host (HOSTING_LIBS): Group libgcc and libc with 2003-11-09 13:24:45 +00:00
configure.in
configure.tgt Switch to ELF targeted VxWorks targets 2003-10-30 09:47:15 +00:00
deffile.h
deffilep.y
dep-in.sed
fdl.texi
gen-doc.texi
genscripts.sh
h8-doc.texi
ld.h
ld.texinfo Fix 'the the' typo 2003-11-06 11:58:58 +00:00
ldcref.c
ldctor.c
ldctor.h
ldemul.c
ldemul.h
ldexp.c
ldexp.h
ldfile.c Use consistent error messages for missing files. 2003-11-07 12:19:34 +00:00
ldfile.h
ldgram.y
ldint.texinfo
ldlang.c Fix IA-64 linker failure reported by Andreas Schwab. 2003-11-19 02:40:55 +00:00
ldlang.h
ldlex.h
ldlex.l
ldmain.c * ldmain.c (main): Remove mpc860c0 code. 2003-12-02 05:58:11 +00:00
ldmain.h
ldmisc.c
ldmisc.h
ldver.c
ldver.h
ldwrite.c
ldwrite.h
lexsup.c * ldmain.c (main): Remove mpc860c0 code. 2003-12-02 05:58:11 +00:00
mac-ld.r
MAINTAINERS
Makefile.am Switch to ELF targeted VxWorks targets 2003-10-30 09:47:15 +00:00
Makefile.in oops - use correct version of automake to regenerate Makefile.in 2003-10-30 09:56:26 +00:00
mpw-config.in
mpw-make.sed
mri.c
mri.h
NEWS
pe-dll.c Index: sim/frv/ChangeLog 2003-10-31 05:32:46 +00:00
pe-dll.h
README
stamp-h.in
sysdep.h
TODO

		README for LD

This is the GNU linker.  It is distributed with other "binary
utilities" which should be in ../binutils.  See ../binutils/README for
more general notes, including where to send bug reports.

There are many features of the linker:

* The linker uses a Binary File Descriptor library (../bfd)
  that it uses to read and write object files.  This helps
  insulate the linker itself from the format of object files.

* The linker supports a number of different object file
  formats.  It can even handle multiple formats at once:
  Read two input formats and write a third.

* The linker can be configured for cross-linking.

* The linker supports a control language.

* There is a user manual (ld.texinfo), as well as the
  beginnings of an internals manual (ldint.texinfo).

Installation
============

See ../binutils/README.

If you want to make a cross-linker, you may want to specify
a different search path of -lfoo libraries than the default.
You can do this by setting the LIB_PATH variable in ./Makefile
or using the --with-lib-path configure switch.

To build just the linker, make the target all-ld from the top level
directory (one directory above this one).

Porting to a new target
=======================

See the ldint.texinfo manual.

Reporting bugs etc
===========================

See ../binutils/README.

Known problems
==============

The Solaris linker normally exports all dynamic symbols from an
executable.  The GNU linker does not do this by default.  This is
because the GNU linker tries to present the same interface for all
similar targets (in this case, all native ELF targets).  This does not
matter for normal programs, but it can make a difference for programs
which try to dlopen an executable, such as PERL or Tcl.  You can make
the GNU linker export all dynamic symbols with the -E or
--export-dynamic command line option.

HP/UX 9.01 has a shell bug that causes the linker scripts to be
generated incorrectly.  The symptom of this appears to be "fatal error
- scanner input buffer overflow" error messages.  There are various
workarounds to this:
  * Build and install bash, and build with "make SHELL=bash".
  * Update to a version of HP/UX with a working shell (e.g., 9.05).
  * Replace "(. ${srcdir}/scripttempl/${SCRIPT_NAME}.sc)" in
    genscripts.sh with "sh ${srcdir}..." (no parens) and make sure the
    emulparams script used exports any shell variables it sets.