binutils-gdb/gold
2008-02-29 00:04:06 +00:00
..
po
testsuite From Craig Silverstein: Have Parameters point to General_options. 2008-02-28 00:18:24 +00:00
aclocal.m4
archive.cc From Craig Silverstein: rename option functions for future option 2008-02-26 21:45:30 +00:00
archive.h
binary.cc
binary.h
common.cc From Craig Silverstein: Have Parameters point to General_options. 2008-02-28 00:18:24 +00:00
common.h
compressed_output.cc From Craig Silverstein: Have Parameters point to General_options. 2008-02-28 00:18:24 +00:00
compressed_output.h
config.in
configure
configure.ac
configure.tgt
debug.h
defstd.cc
defstd.h
dirsearch.cc
dirsearch.h
dwarf_reader.cc From Craig Silverstein: Have Parameters point to General_options. 2008-02-28 00:18:24 +00:00
dwarf_reader.h
dynobj.cc From Craig Silverstein: Have Parameters point to General_options. 2008-02-28 00:18:24 +00:00
dynobj.h From Craig Silverstein: rework handling of Script_options. 2008-02-26 22:48:08 +00:00
ehframe.cc From Craig Silverstein: Have Parameters point to General_options. 2008-02-28 00:18:24 +00:00
ehframe.h Align FDE and CIE lengths as needed. 2008-02-14 02:40:15 +00:00
errors.cc
errors.h
expression.cc Permit scripts to refer to the addresses of output sections which were 2008-02-29 00:04:06 +00:00
fileread.cc From Craig Silverstein: Have Parameters point to General_options. 2008-02-28 00:18:24 +00:00
fileread.h
gold-threads.cc From Craig Silverstein: Have Parameters point to General_options. 2008-02-28 00:18:24 +00:00
gold-threads.h
gold.cc Support -d/--define-common. 2008-02-28 20:35:39 +00:00
gold.h
i386.cc From Craig Silverstein: Have Parameters point to General_options. 2008-02-28 00:18:24 +00:00
layout.cc Don't check assertions until symbols are finalized. Create an output 2008-02-28 04:45:47 +00:00
layout.h Don't check assertions until symbols are finalized. Create an output 2008-02-28 04:45:47 +00:00
main.cc From Craig Silverstein: Have Parameters point to General_options. 2008-02-28 00:18:24 +00:00
Makefile.am
Makefile.in
merge.cc
merge.h
object.cc Support -d/--define-common. 2008-02-28 20:35:39 +00:00
object.h Implement -q/--emit-relocs. 2008-02-27 22:38:18 +00:00
options.cc Support -d/--define-common. 2008-02-28 20:35:39 +00:00
options.h Support -d/--define-common. 2008-02-28 20:35:39 +00:00
output.cc From Craig Silverstein: Have Parameters point to General_options. 2008-02-28 00:18:24 +00:00
output.h Implement -Tdata and -Tbss. 2008-02-13 22:47:28 +00:00
parameters.cc From Craig Silverstein: Have Parameters point to General_options. 2008-02-28 00:18:24 +00:00
parameters.h From Craig Silverstein: Have Parameters point to General_options. 2008-02-28 00:18:24 +00:00
pread.c
README
readsyms.cc Read input scripts which look like input objects with proper 2008-02-28 19:46:06 +00:00
readsyms.h Read input scripts which look like input objects with proper 2008-02-28 19:46:06 +00:00
reloc-types.h
reloc.cc Read input scripts which look like input objects with proper 2008-02-28 19:46:06 +00:00
reloc.h Implement -q/--emit-relocs. 2008-02-27 22:38:18 +00:00
resolve.cc Don't warn about redefinitions from a --just-symbols object. 2008-02-28 22:39:29 +00:00
script-c.h Support -d/--define-common. 2008-02-28 20:35:39 +00:00
script-sections.cc Permit scripts to refer to the addresses of output sections which were 2008-02-29 00:04:06 +00:00
script-sections.h Permit scripts to refer to the addresses of output sections which were 2008-02-29 00:04:06 +00:00
script.cc Support -d/--define-common. 2008-02-28 20:35:39 +00:00
script.h Permit scripts to refer to the addresses of output sections which were 2008-02-29 00:04:06 +00:00
stringpool.cc From Craig Silverstein: Have Parameters point to General_options. 2008-02-28 00:18:24 +00:00
stringpool.h
strtab.h
symtab.cc Support -d/--define-common. 2008-02-28 20:35:39 +00:00
symtab.h From Craig Silverstein: Have Parameters point to General_options. 2008-02-28 00:18:24 +00:00
target-reloc.h From Craig Silverstein: Have Parameters point to General_options. 2008-02-28 00:18:24 +00:00
target-select.cc
target-select.h
target.h From Craig Silverstein: Have Parameters point to General_options. 2008-02-28 00:18:24 +00:00
tls.h
token.h Read input scripts which look like input objects with proper 2008-02-28 19:46:06 +00:00
version.cc
workqueue-internal.h
workqueue-threads.cc
workqueue.cc Read input scripts which look like input objects with proper 2008-02-28 19:46:06 +00:00
workqueue.h Read input scripts which look like input objects with proper 2008-02-28 19:46:06 +00:00
x86_64.cc From Craig Silverstein: Have Parameters point to General_options. 2008-02-28 00:18:24 +00:00
yyscript.y Support -d/--define-common. 2008-02-28 20:35:39 +00:00

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.