binutils-gdb/gold
Ian Lance Taylor eb4dfdd470 Fix typo in comment. 2007-10-14 04:10:25 +00:00
..
po From Craig Silverstein: don't permit -s and -r. 2007-10-10 19:30:39 +00:00
testsuite Only run static TLS tests on glibc 2.4 or later. 2007-10-14 03:57:22 +00:00
Makefile.am
Makefile.in Only run static TLS tests on glibc 2.4 or later. 2007-10-14 03:57:22 +00:00
README
aclocal.m4
archive.cc
archive.h
common.cc
common.h
config.in Add --stats option to print runtime and memory usage statistics. 2007-10-12 05:51:25 +00:00
configure Only run static TLS tests on glibc 2.4 or later. 2007-10-14 03:57:22 +00:00
configure.ac Only run static TLS tests on glibc 2.4 or later. 2007-10-14 03:57:22 +00:00
defstd.cc
defstd.h
dirsearch.cc
dirsearch.h
dynobj.cc Add an option for Stringpools to not copy strings. 2007-10-12 06:06:34 +00:00
dynobj.h
ehframe.cc
ehframe.h
fileread.cc Add --stats option to print runtime and memory usage statistics. 2007-10-12 05:51:25 +00:00
fileread.h Add --stats option to print runtime and memory usage statistics. 2007-10-12 05:51:25 +00:00
gold-threads.cc
gold-threads.h
gold.cc From Craig Silverstein: add some internationalization calls. 2007-10-14 04:06:18 +00:00
gold.h
i386.cc From Craig Silverstein: use tls.h in x86_64.cc. 2007-10-13 00:15:07 +00:00
layout.cc From Craig Silverstein: always use 32-bit format for gold note. 2007-10-14 03:12:53 +00:00
layout.h Add --stats option to print runtime and memory usage statistics. 2007-10-12 05:51:25 +00:00
main.cc Add --stats option to print runtime and memory usage statistics. 2007-10-12 05:51:25 +00:00
merge.cc Add an option for Stringpools to not copy strings. 2007-10-12 06:06:34 +00:00
merge.h
object.cc From Craig Silverstein: add some internationalization calls. 2007-10-14 04:06:18 +00:00
object.h From Craig Silverstein: don't get confused if the same file name 2007-10-10 06:33:56 +00:00
options.cc Add --stats option to print runtime and memory usage statistics. 2007-10-12 05:51:25 +00:00
options.h Add --stats option to print runtime and memory usage statistics. 2007-10-12 05:51:25 +00:00
output.cc From Craig Silverstein: delete the output file first if it exists and 2007-10-10 06:29:10 +00:00
output.h Add an option for Stringpools to not copy strings. 2007-10-12 06:06:34 +00:00
parameters.cc Implement -s and -S options which strip symbols. 2007-10-10 19:02:56 +00:00
parameters.h Fix typo in comment. 2007-10-14 04:10:25 +00:00
pread.c
readsyms.cc
readsyms.h
reloc-types.h
reloc.cc
reloc.h
resolve.cc From Craig Silverstein: add some internationalization calls. 2007-10-14 04:06:18 +00:00
script-c.h
script.cc
script.h
stringpool.cc Add an option for Stringpools to not copy strings. 2007-10-12 06:06:34 +00:00
stringpool.h Add an option for Stringpools to not copy strings. 2007-10-12 06:06:34 +00:00
strtab.h
symtab.cc Add an option for Stringpools to not copy strings. 2007-10-12 06:06:34 +00:00
symtab.h Add an option for Stringpools to not copy strings. 2007-10-12 06:06:34 +00:00
target-reloc.h From Andrew Chatham: exit on relocation error. 2007-10-11 19:13:02 +00:00
target-select.cc
target-select.h
target.h
tls.h
version.cc
workqueue.cc
workqueue.h
x86_64.cc From Craig Silverstein: use tls.h in x86_64.cc. 2007-10-13 00:15:07 +00:00
yyscript.y

README

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.