binutils-gdb/ld
Jakub Jelinek 108ba30509 bfd/
* elflink.c (_bfd_elf_export_symbol): Adjust for globals and locals
	field changes.
	(_bfd_elf_link_assign_sym_version): Likewise.
	* elflink.h (size_dynamic_sections): Likewise.
include/
	* bfdlink.h (struct bfd_elf_version_expr): Remove match field.
	Add wildcard and mask fields.
	(BFD_ELF_VERSION_C_TYPE): Define.
	(BFD_ELF_VERSION_CXX_TYPE): Likewise.
	(BFD_ELF_VERSION_JAVA_TYPE): Likewise.
	(struct bfd_elf_version_expr_head): New.
	(struct bfd_elf_version_tree): Add match field.
	Change type of globals and locals fields
	to struct bfd_elf_version_expr_head.
ld/
	* ldlang.c: Include hashtab.h.
	(lang_vers_match_lang_c, lang_vers_match_lang_cplusplus,
	lang_vers_match_lang_java): Remove.
	(lang_vers_match): New function.
	(lang_new_vers_pattern): Initialize wildcard and mask
	fields, don't initialize match.
	(lang_new_vers_node): Use xcalloc.  Adjust for globals and
	locals field type changes.  Set match field.
	(version_expr_head_hash, version_expr_head_eq): New functions.
	(lang_finalize_version_expr_head): New function.
	(lang_register_vers_node): Call lang_finalize_version_expr_head.
	Search in hash table if not wildcard when looking for duplicates.
	* emultempl/ppc64elf.em (new_vers_pattern): Don't bother with
	duplicate checking.  Initialize all fields of dot_entry from entry
	with the exception of pattern and next.
2003-10-22 06:58:17 +00:00
..
emulparams * Makefile.am: Remove old (before GCC 3.3) emulations for AVR 2003-10-19 16:46:14 +00:00
emultempl bfd/ 2003-10-22 06:58:17 +00:00
po Updated translations 2003-08-21 13:52:58 +00:00
scripttempl * Makefile.am: Remove old (before GCC 3.3) emulations for AVR 2003-10-19 16:46:14 +00:00
testsuite * ld-mmix/greg-14.d, ld-mmix/greg-5.d, ld-mmix/pushja1b.d, 2003-10-18 16:05:02 +00:00
acinclude.m4
aclocal.m4
ChangeLog bfd/ 2003-10-22 06:58:17 +00:00
ChangeLog-9197
ChangeLog-9899
config.in
configure
configure.host * configure.host (HOSTING_LIBS): Define for hppa*-*-linux*. 2003-10-07 17:30:02 +00:00
configure.in
configure.tgt * Makefile.am: Remove old (before GCC 3.3) emulations for AVR 2003-10-19 16:46:14 +00:00
deffile.h
deffilep.y * deffilep.y: Remove commas from %token lines. 2003-10-19 15:21:31 +00:00
dep-in.sed * dep-in.sed: Remove libintl.h. 2003-08-14 07:04:57 +00:00
fdl.texi
gen-doc.texi
genscripts.sh * Makefile.am (GENSCRIPTS_EXTRA, GEN_EXTRA_DEPENDS): Remove. Use 2003-10-16 08:46:35 +00:00
h8-doc.texi
ld.h
ld.texinfo * ld.texinfo (Builtin Functions) <DEFINED>: Say that only symbols 2003-10-11 09:16:20 +00:00
ldcref.c
ldctor.c
ldctor.h
ldemul.c
ldemul.h
ldexp.c * ld.texinfo (Builtin Functions) <DEFINED>: Say that only symbols 2003-10-11 09:16:20 +00:00
ldexp.h
ldfile.c
ldfile.h
ldgram.y Add warning messages for the use of an undeclared memory region and the 2003-10-21 15:33:47 +00:00
ldint.texinfo
ldlang.c bfd/ 2003-10-22 06:58:17 +00:00
ldlang.h Add warning messages for the use of an undeclared memory region and the 2003-10-21 15:33:47 +00:00
ldlex.h
ldlex.l * ld.texinfo: Typo fixes. Document SUBALIGN. 2003-07-27 11:58:28 +00:00
ldmain.c [ bfd/ChangeLog ] 2003-09-30 16:17:15 +00:00
ldmain.h
ldmisc.c
ldmisc.h
ldver.c
ldver.h
ldwrite.c bfd/Changelog: 2003-10-07 08:53:42 +00:00
ldwrite.h
lexsup.c lexsup.c (parse_args: OPTION_CALL_SHARED): Revise comment describing defaults. 2003-10-08 13:52:33 +00:00
mac-ld.r
MAINTAINERS
Makefile.am * Makefile.am: Remove old (before GCC 3.3) emulations for AVR 2003-10-19 16:46:14 +00:00
Makefile.in * Makefile.am: Remove old (before GCC 3.3) emulations for AVR 2003-10-19 16:46:14 +00:00
mpw-config.in
mpw-make.sed
mri.c
mri.h
NEWS [ binutils/ChangeLog ] 2003-09-30 16:44:04 +00:00
pe-dll.c 2003-10-19 Andrew Cagney <cagney@redhat.com> 2003-10-20 14:38: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.