binutils-gdb/ld
Alan Modra ce875075f9 PR ld/17973 LTO file syms
LTO output objects have an STT_FILE symbol using the name of the file,
a temporary file.  This results in executables that can't be exactly
reproduced, so the file name needs to be dropped.  We don't want to
lose all file symbols when linking a mix of lto and non-lto objects as
a file symbol can be used to figure which source file generated a
given local symbol.  So lto output objects need to be marked.

I chose to mark lto output objects with a new bfd flag.  This flag is
also used to fix a bug in the link-once handling;  An object being
loaded after "loading_lto_outputs" is set might be one extracted from
an archive to satisfy new references from lto objects, not an lto
object itself.

The new flag is copied from archive to elements, and the same done
for no_export.  This fixes a bug in that --exclude-libs doesn't work
with thin archives.  I'm not completely happy with this part of the
patch and may revist this to avoid the hack in
_bfd_look_for_bfd_in_cache.

	PR ld/17973
include/
	* bfdlink.h (struct bfd_link_info): Delete loading_lto_outputs.
bfd/
	* bfd.c (struct bfd): Add lto_output.
	* linker.c (_bfd_handle_already_linked): Explicitly test for
	objects added by the lto plugin.
	* opncls.c (_bfd_new_bfd_contained_in): Copy lto_output and
	no_export flags from archive.
	* archive.c (open_nested_file): New function, setting lto_output
	and no_export, extracted from..
	(find_nested_archive): ..here.  Flip params.  Rename from
	_bfd_find_nested_archive.
	(_bfd_get_elt_at_filepos): Correct var typo.  Use open_nested_file.
	(_bfd_look_for_bfd_in_cache): Copy no_export.
	* elflink.c (elf_link_add_object_symbols): Remove now unnecessary
	my_archive->no_export test.
	(elf_link_input_bfd): Drop existing lto_output STT_FILE syms.
	Don't use the file name when adding lto_output STT_FILE sym.
	* bfd-in2.h: Regenerate.
ld/
	* ldlang.h (struct lang_input_statement_flags): Add lto_output.
	* ldlang.c (lang_process): Don't set loading_lto_outputs.
	* ldfile.c (ldfile_try_open_bfd): Transfer entry flags.lto_output
	to bfd.
	* plugin.c (add_input_file, add_input_library): Set flags.lto_output.
2015-02-14 23:41:54 +10:30
..
emulparams PowerPC64 changes for xlc 2015-01-28 18:30:54 +10:30
emultempl Document -z text, -z notext and -z textoff 2015-02-06 10:01:35 -08:00
po ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
scripttempl FT32 initial support 2015-01-28 16:25:18 +10:30
testsuite Replace elf_i386 with elf_i386_nacl for nacl 2015-02-12 04:59:57 -08:00
.gitignore
aclocal.m4
ChangeLog PR ld/17973 LTO file syms 2015-02-14 23:41:54 +10:30
ChangeLog-0001
ChangeLog-0203
ChangeLog-2004
ChangeLog-2005
ChangeLog-2006
ChangeLog-2007
ChangeLog-2008 strip off +x bits on non-executable/script files 2013-12-07 02:03:03 -05:00
ChangeLog-2009
ChangeLog-2010
ChangeLog-2011
ChangeLog-2012
ChangeLog-2013 New Year - binutils ChangeLog rotation 2014-01-08 05:32:12 -08:00
ChangeLog-2014 ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ChangeLog-9197
ChangeLog-9899
config.in Use mmap and cache the view buffer for get_view 2015-02-06 09:05:57 -08:00
configure Use mmap and cache the view buffer for get_view 2015-02-06 09:05:57 -08:00
configure.ac Use mmap and cache the view buffer for get_view 2015-02-06 09:05:57 -08:00
configure.host ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
configure.tgt FT32 initial support 2015-01-28 16:25:18 +10:30
deffile.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
deffilep.y ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
dep-in.sed
elf-hints-local.h
fdl.texi
gen-doc.texi ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
genscrba.sh
genscripts.sh ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
h8-doc.texi ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ld.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ld.texinfo Correct ld.texinfo cross reference 2015-02-13 13:47:28 +10:30
ldbuildid.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ldbuildid.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ldcref.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ldctor.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ldctor.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ldemul.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ldemul.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ldexp.c Allow symbols in MEMORY region specification 2015-01-28 15:06:48 +10:30
ldexp.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ldfile.c PR ld/17973 LTO file syms 2015-02-14 23:41:54 +10:30
ldfile.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ldgram.y Allow symbols in MEMORY region specification 2015-01-28 15:06:48 +10:30
ldint.texinfo ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ldlang.c PR ld/17973 LTO file syms 2015-02-14 23:41:54 +10:30
ldlang.h PR ld/17973 LTO file syms 2015-02-14 23:41:54 +10:30
ldlex-wrapper.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ldlex.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ldlex.l ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ldmain.c Update plugin_maybe_claim 2015-02-07 11:01:22 -08:00
ldmain.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ldmisc.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ldmisc.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ldver.c Correct printed year in copyright notices 2015-01-02 01:08:15 +10:30
ldver.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ldwrite.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ldwrite.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
lexsup.c Add --[no-]map-whole-files for gold compatibility 2015-02-11 14:10:07 -08:00
MAINTAINERS ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
Makefile.am Add tests for non-object IR file 2015-02-11 05:02:12 -08:00
Makefile.in Add tests for non-object IR file 2015-02-11 05:02:12 -08:00
mri.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
mri.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
NEWS Mention support for LLVM plugin in NEWS 2015-02-13 07:54:21 -08:00
pe-dll.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
pe-dll.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
pep-dll.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
pep-dll.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
plugin.c PR ld/17973 LTO file syms 2015-02-14 23:41:54 +10:30
plugin.h Update plugin_maybe_claim 2015-02-07 11:01:22 -08:00
README ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
stamp-h.in
sysdep.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
testplug2.c Output "warning:" or "error:" in plugin messages 2015-02-11 14:00:51 -08:00
testplug3.c Remove unused dump_tv_tag 2015-02-11 13:35:07 -08:00
testplug.c The initial support for LDPT_GET_VIEW 2015-01-28 10:27:31 -08:00
TODO

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

		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.

Copyright (C) 2012-2015 Free Software Foundation, Inc.

Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved.