binutils-gdb/gold
2007-09-06 23:37:53 +00:00
..
po
testsuite
aclocal.m4
archive.cc Implement --whole-archive. 2007-08-21 23:37:56 +00:00
archive.h Implement --whole-archive. 2007-08-21 23:37:56 +00:00
common.cc
common.h
config.in Add support for --enable-target to control which template 2007-09-04 20:00:53 +00:00
configure Add support for --enable-target to control which template 2007-09-04 20:00:53 +00:00
configure.ac Add support for --enable-target to control which template 2007-09-04 20:00:53 +00:00
defstd.cc
defstd.h
dirsearch.cc
dirsearch.h
dynobj.cc Add support for --enable-target to control which template 2007-09-04 20:00:53 +00:00
dynobj.h
fileread.cc
fileread.h Implement --whole-archive. 2007-08-21 23:37:56 +00:00
gold-threads.cc
gold-threads.h
gold.cc
gold.h
i386.cc
layout.cc Add support for --enable-target to control which template 2007-09-04 20:00:53 +00:00
layout.h
main.cc
Makefile.am
Makefile.in
merge.cc
merge.h
object.cc Add support for --enable-target to control which template 2007-09-04 20:00:53 +00:00
object.h
options.cc Add -rpath-link option, currently unused. 2007-09-06 23:37:53 +00:00
options.h Add -rpath-link option, currently unused. 2007-09-06 23:37:53 +00:00
output.cc Add support for --enable-target to control which template 2007-09-04 20:00:53 +00:00
output.h Force PT_LOAD segments to be aligned to the page size. 2007-08-21 21:03:50 +00:00
README
readsyms.cc
readsyms.h
reloc-types.h
reloc.cc Add support for --enable-target to control which template 2007-09-04 20:00:53 +00:00
reloc.h
resolve.cc Add support for --enable-target to control which template 2007-09-04 20:00:53 +00:00
script-c.h
script.cc Make relative references in linker scripts absolute and update a 2007-08-21 21:29:12 +00:00
script.h
stringpool.cc
stringpool.h
strtab.h
symtab.cc Add support for --enable-target to control which template 2007-09-04 20:00:53 +00:00
symtab.h Any symbol which is in both a regular object and a dynamic object 2007-08-29 05:48:24 +00:00
target-reloc.h Make relative references in linker scripts absolute and update a 2007-08-21 21:29:12 +00:00
target-select.cc
target-select.h
target.h
workqueue.cc
workqueue.h
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.