binutils-gdb/gold
Ian Lance Taylor dd8670e56c From Craig Silverstein: Quote the symbol name in the ODR violation
message to avoid a gcc collect2 demangling bug.
2007-11-17 02:49:22 +00:00
..
po From Craig Silverstein: Initialize got_relocs. 2007-11-09 23:56:32 +00:00
testsuite From Craig Silverstein: Quote the symbol name in the ODR violation 2007-11-17 02:49:22 +00:00
aclocal.m4
archive.cc Ignore empty archives. 2007-11-16 18:44:20 +00:00
archive.h
common.cc
common.h
config.in
configure
configure.ac
defstd.cc
defstd.h
dirsearch.cc
dirsearch.h
dwarf_reader.cc DW_LNE_end_sequence indicates that the address points to the byte 2007-11-16 06:47:53 +00:00
dwarf_reader.h From Craig Silverstein: Clean up DWARF line reader code. 2007-11-14 18:33:47 +00:00
dynobj.cc From Craig Silverstein: Add support for --demangle. 2007-11-15 01:12:55 +00:00
dynobj.h Warn about undefined references in shared libraries if we have seen 2007-11-14 07:34:53 +00:00
ehframe.cc Generate a complete exception frame header. Discard duplicate 2007-11-09 07:00:15 +00:00
ehframe.h Generate a complete exception frame header. Discard duplicate 2007-11-09 07:00:15 +00:00
errors.cc From Craig Silverstein: Add support for --demangle. 2007-11-15 01:12:55 +00:00
errors.h
fileread.cc
fileread.h
gold-threads.cc
gold-threads.h
gold.cc From Craig Silverstein: Report output file name with ODR violation 2007-11-14 18:44:58 +00:00
gold.h
i386.cc From Cary Coutant: Count textrel with output sections rather than 2007-11-15 23:46:46 +00:00
layout.cc From Cary Coutant: Count textrel with output sections rather than 2007-11-15 23:46:46 +00:00
layout.h From Cary Coutant: Count textrel with output sections rather than 2007-11-15 23:46:46 +00:00
main.cc
Makefile.am From Craig Silverstein: Add first version of generating error messages 2007-11-02 23:02:44 +00:00
Makefile.in From Craig Silverstein: Add first version of generating error messages 2007-11-02 23:02:44 +00:00
merge.cc Generate a complete exception frame header. Discard duplicate 2007-11-09 07:00:15 +00:00
merge.h Generate a complete exception frame header. Discard duplicate 2007-11-09 07:00:15 +00:00
object.cc From Craig Silverstein: Add support for --demangle. 2007-11-15 01:12:55 +00:00
object.h From Cary Coutant: Improve i386 shared library TLS support. 2007-11-14 22:31:02 +00:00
options.cc From Craig Silverstein: Add --strip-debug-gdb. 2007-11-15 23:03:45 +00:00
options.h From Craig Silverstein: Add --strip-debug-gdb. 2007-11-15 23:03:45 +00:00
output.cc From Cary Coutant: Count textrel with output sections rather than 2007-11-15 23:46:46 +00:00
output.h From Cary Coutant: Count textrel with output sections rather than 2007-11-15 23:46:46 +00:00
parameters.cc From Craig Silverstein: Add --strip-debug-gdb. 2007-11-15 23:03:45 +00:00
parameters.h From Craig Silverstein: Add --strip-debug-gdb. 2007-11-15 23:03:45 +00:00
pread.c
README
readsyms.cc
readsyms.h
reloc-types.h
reloc.cc From Cary Coutant: Count textrel with output sections rather than 2007-11-15 23:46:46 +00:00
reloc.h From Cary Coutant: Count textrel with output sections rather than 2007-11-15 23:46:46 +00:00
resolve.cc From Craig Silverstein: Add support for --demangle. 2007-11-15 01:12:55 +00:00
script-c.h
script.cc From Craig Silverstein: Implement OPTION in linker scripts. 2007-10-30 06:27:03 +00:00
script.h
stringpool.cc Generate a complete exception frame header. Discard duplicate 2007-11-09 07:00:15 +00:00
stringpool.h
strtab.h
symtab.cc From Craig Silverstein: Quote the symbol name in the ODR violation 2007-11-17 02:49:22 +00:00
symtab.h From Craig Silverstein: Add support for --demangle. 2007-11-15 01:12:55 +00:00
target-reloc.h From Cary Coutant: Improve i386 shared library TLS support. 2007-11-14 22:31:02 +00:00
target-select.cc
target-select.h
target.h Add heuristics for undefined symbol warnings. 2007-11-14 16:53:25 +00:00
tls.h
version.cc Released gold 0.8 2007-11-16 21:18:22 +00:00
workqueue.cc
workqueue.h
x86_64.cc From Cary Coutant: Count textrel with output sections rather than 2007-11-15 23:46:46 +00:00
yyscript.y

gold is an ELF linker.  It is intended to have complete support for
ELF and to run as fast as possible on modern systems.

It is written in C++.  It is (intended to be) a GNU program, and
therefore follows the GNU formatting standards as modified for C++.
Source documents in order of precedence:
    http://www.gnu.org/prep/standards/
    http://gcc.gnu.org/onlinedocs/libstdc++/17_intro/C++STYLE
    http://www.zembu.com/eng/procs/c++style.html

The linker is intended to have complete support for cross-compilation,
which still supporting the normal case of native linking as fast as
possible.  This makes the code more complex.

Many functions are actually templates whose parameter is the ELF file
class (e.g., 32 bits or 64 bits).  The code is the same, but we don't
want to pay the execution time cost of always using 64-bit integers if
the target is 32 bits.