NameDateSize

..Today47

acinclude.m4H A D13-May-2002478

aclocal.m4H A D17-May-20046.4 KiB

ChangeLogH A D02-Nov-200411.4 KiB

ChangeLog-0001H A D02-Nov-2004110.6 KiB

ChangeLog-0203H A D02-Nov-2004119.5 KiB

ChangeLog-9197H A D02-Nov-2004274.2 KiB

ChangeLog-9899H A D17-May-200470 KiB

config.inH A D17-May-20044.6 KiB

configdoc.texiH A D17-May-2004366

configureH A D15-Jan-2005159 KiB

configure.hostH A D02-Nov-200410.8 KiB

configure.inH A D15-Jan-20056.7 KiB

configure.tgtH A D05-Jul-201323.8 KiB

deffile.hH A D02-Nov-20043.3 KiB

deffilep.yH A D02-Nov-200423 KiB

dep-in.sedH A D02-Nov-2004275

emulparams/H18-Jan-2018310

emultempl/H18-Jan-201839

fdl.texiH A D17-May-200418 KiB

gen-doc.texiH A D17-May-2004366

genscripts.shH A D13-Jun-200811.4 KiB

h8-doc.texiH A D17-May-2004307

ld.hH A D02-Nov-20047.1 KiB

ld.texinfoH A D02-Nov-2004211.7 KiB

ldcref.cH A D02-Nov-200414.1 KiB

ldctor.cH A D02-Nov-20049.3 KiB

ldctor.hH A D02-Nov-20042 KiB

ldemul.cH A D02-Nov-20046.2 KiB

ldemul.hH A D02-Nov-20046.3 KiB

ldexp.cH A D02-Nov-200426.1 KiB

ldexp.hH A D02-Nov-20043.3 KiB

ldfile.cH A D02-Nov-200413.9 KiB

ldfile.hH A D02-Nov-20042.2 KiB

ldgram.yH A D08-Oct-202224.4 KiB

ldint.texinfoH A D02-Nov-200447.5 KiB

ldlang.cH A D02-Nov-2004141.9 KiB

ldlang.hH A D02-Nov-200415.9 KiB

ldlex.hH A D02-Nov-20041.8 KiB

ldlex.lH A D02-Nov-200419.6 KiB

ldmain.cH A D22-Dec-201438.1 KiB

ldmain.hH A D02-Nov-20041.5 KiB

ldmisc.cH A D30-Sep-201312.2 KiB

ldmisc.hH A D02-Nov-20041.5 KiB

ldver.cH A D02-Nov-20041.7 KiB

ldver.hH A D02-Nov-2004860

ldver.texiH A D02-Nov-200418

ldwrite.cH A D02-Nov-200415.1 KiB

ldwrite.hH A D02-Nov-2004843

lexsup.cH A D02-Apr-201546.4 KiB

mac-ld.rH A D10-Jun-1996530

MAINTAINERSH A D13-May-200228

Makefile.amH A D05-Jul-201380.4 KiB

Makefile.inH A D05-Jul-2013100.8 KiB

mpw-config.inH A D12-Sep-20001.9 KiB

mpw-make.sedH A D12-Sep-20002.6 KiB

mri.cH A D02-Nov-20047.5 KiB

mri.hH A D02-Nov-20041.5 KiB

NEWSH A D02-Nov-200410.9 KiB

pe-dll.cH A D02-Nov-200469.7 KiB

pe-dll.hH A D02-Nov-20042 KiB

po/H18-Jan-201817

READMEH A D17-May-20042.4 KiB

scripttempl/H18-Jan-201879

stamp-h.inH A D12-Sep-200010

sysdep.hH A D02-Nov-20042 KiB

TODOH A D10-Jun-1996361

README

1		README for LD
2
3This is the GNU linker.  It is distributed with other "binary
4utilities" which should be in ../binutils.  See ../binutils/README for
5more general notes, including where to send bug reports.
6
7There are many features of the linker:
8
9* The linker uses a Binary File Descriptor library (../bfd)
10  that it uses to read and write object files.  This helps
11  insulate the linker itself from the format of object files.
12
13* The linker supports a number of different object file
14  formats.  It can even handle multiple formats at once:
15  Read two input formats and write a third.
16
17* The linker can be configured for cross-linking.
18
19* The linker supports a control language.
20
21* There is a user manual (ld.texinfo), as well as the
22  beginnings of an internals manual (ldint.texinfo).
23
24Installation
25============
26
27See ../binutils/README.
28
29If you want to make a cross-linker, you may want to specify
30a different search path of -lfoo libraries than the default.
31You can do this by setting the LIB_PATH variable in ./Makefile
32or using the --with-lib-path configure switch.
33
34To build just the linker, make the target all-ld from the top level
35directory (one directory above this one).
36
37Porting to a new target
38=======================
39
40See the ldint.texinfo manual.
41
42Reporting bugs etc
43===========================
44
45See ../binutils/README.
46
47Known problems
48==============
49
50The Solaris linker normally exports all dynamic symbols from an
51executable.  The GNU linker does not do this by default.  This is
52because the GNU linker tries to present the same interface for all
53similar targets (in this case, all native ELF targets).  This does not
54matter for normal programs, but it can make a difference for programs
55which try to dlopen an executable, such as PERL or Tcl.  You can make
56the GNU linker export all dynamic symbols with the -E or
57--export-dynamic command line option.
58
59HP/UX 9.01 has a shell bug that causes the linker scripts to be
60generated incorrectly.  The symptom of this appears to be "fatal error
61- scanner input buffer overflow" error messages.  There are various
62workarounds to this:
63  * Build and install bash, and build with "make SHELL=bash".
64  * Update to a version of HP/UX with a working shell (e.g., 9.05).
65  * Replace "(. ${srcdir}/scripttempl/${SCRIPT_NAME}.sc)" in
66    genscripts.sh with "sh ${srcdir}..." (no parens) and make sure the
67    emulparams script used exports any shell variables it sets.
68