binutils-gdb/gold
2007-12-11 23:30:52 +00:00
..
po
testsuite
aclocal.m4
archive.cc
archive.h
common.cc
common.h
compressed_output.cc
compressed_output.h
config.in
configure
configure.ac
debug.h
defstd.cc
defstd.h
dirsearch.cc
dirsearch.h
dwarf_reader.cc From Craig Silverstein: Speed up ODR violation reporting. 2007-12-11 18:17:31 +00:00
dwarf_reader.h From Craig Silverstein: Speed up ODR violation reporting. 2007-12-11 18:17:31 +00:00
dynobj.cc
dynobj.h
ehframe.cc Fix ehframe header handling for shared libraries. 2007-12-07 06:44:01 +00:00
ehframe.h Fix ehframe header handling for shared libraries. 2007-12-07 06:44:01 +00:00
errors.cc
errors.h
fileread.cc Keep views on views_ list so that they can be found again. 2007-12-10 22:55:31 +00:00
fileread.h
gold-threads.cc
gold-threads.h
gold.cc
gold.h
i386.cc From Cary Coutant: Set DF_STATIC_TLS as appropriate. 2007-12-11 23:30:52 +00:00
layout.cc From Cary Coutant: Set DF_STATIC_TLS as appropriate. 2007-12-11 23:30:52 +00:00
layout.h From Cary Coutant: Set DF_STATIC_TLS as appropriate. 2007-12-11 23:30:52 +00:00
main.cc
Makefile.am
Makefile.in
merge.cc
merge.h From Craig Silverstein: Fix error message, add this->. 2007-12-08 03:05:27 +00:00
object.cc
object.h From Cary Coutant: Remove commented out assert. Also add comment for 2007-12-07 00:54:28 +00:00
options.cc From Craig Silverstein: Fix error message, add this->. 2007-12-08 03:05:27 +00:00
options.h From Craig Silverstein: Fix error message, add this->. 2007-12-08 03:05:27 +00:00
output.cc From Cary Coutant: Fix handling of RELATIVE RELA relocs. 2007-12-07 19:32:59 +00:00
output.h From Cary Coutant: Fix handling of RELATIVE RELA relocs. 2007-12-07 19:32:59 +00:00
parameters.cc
parameters.h
pread.c
README
readsyms.cc
readsyms.h
reloc-types.h
reloc.cc
reloc.h
resolve.cc
script-c.h
script.cc
script.h
stringpool.cc
stringpool.h
strtab.h
symtab.cc From Cary Coutant: Fix handling of RELATIVE RELA relocs. 2007-12-07 19:32:59 +00:00
symtab.h From Cary Coutant: Fix handling of RELATIVE RELA relocs. 2007-12-07 19:32:59 +00:00
target-reloc.h
target-select.cc
target-select.h
target.h
tls.h
version.cc Released gold-alpha 0.9. 2007-12-08 03:17:25 +00:00
workqueue-internal.h
workqueue-threads.cc
workqueue.cc
workqueue.h
x86_64.cc From Cary Coutant: Set DF_STATIC_TLS as appropriate. 2007-12-11 23:30:52 +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.