binutils-gdb/gold
2007-10-10 19:30:39 +00:00
..
po From Craig Silverstein: don't permit -s and -r. 2007-10-10 19:30:39 +00:00
testsuite Make TLS test fail more reliably. 2007-10-08 07:24:21 +00:00
aclocal.m4
archive.cc
archive.h
common.cc
common.h
config.in Full support for --sysroot. 2007-10-04 05:49:04 +00:00
configure Add --version option. 2007-10-07 18:06:27 +00:00
configure.ac Add --version option. 2007-10-07 18:06:27 +00:00
defstd.cc
defstd.h
dirsearch.cc Full support for --sysroot. 2007-10-04 05:49:04 +00:00
dirsearch.h Full support for --sysroot. 2007-10-04 05:49:04 +00:00
dynobj.cc Fix soname for library found in search path. 2007-10-09 17:46:15 +00:00
dynobj.h
ehframe.cc
ehframe.h
fileread.cc Fix soname for library found in search path. 2007-10-09 17:46:15 +00:00
fileread.h Fix soname for library found in search path. 2007-10-09 17:46:15 +00:00
gold-threads.cc
gold-threads.h
gold.cc
gold.h Create a note section with the version of gold. 2007-10-09 21:37:55 +00:00
i386.cc From Craig Silverstein: add tls.h, use it in i386.cc. 2007-10-08 05:12:59 +00:00
layout.cc Implement -s and -S options which strip symbols. 2007-10-10 19:02:56 +00:00
layout.h Create a note section with the version of gold. 2007-10-09 21:37:55 +00:00
main.cc Full support for --sysroot. 2007-10-04 05:49:04 +00:00
Makefile.am From Craig Silverstein: add tls.h, use it in i386.cc. 2007-10-08 05:12:59 +00:00
Makefile.in From Craig Silverstein: add tls.h, use it in i386.cc. 2007-10-08 05:12:59 +00:00
merge.cc From Craig Silverstein: don't get confused if the same file name 2007-10-10 06:33:56 +00:00
merge.h
object.cc Implement -s and -S options which strip symbols. 2007-10-10 19:02:56 +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 From Craig Silverstein: don't permit -s and -r. 2007-10-10 19:30:39 +00:00
options.h From Craig Silverstein: don't permit -s and -r. 2007-10-10 19:30:39 +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 support for local GOT offsets. 2007-10-08 07:22:21 +00:00
parameters.cc Implement -s and -S options which strip symbols. 2007-10-10 19:02:56 +00:00
parameters.h Implement -s and -S options which strip symbols. 2007-10-10 19:02:56 +00:00
pread.c
README
readsyms.cc
readsyms.h
reloc-types.h
reloc.cc
reloc.h
resolve.cc
script-c.h
script.cc Full support for --sysroot. 2007-10-04 05:49:04 +00:00
script.h
stringpool.cc From Andrew Chatham: fix bug in 64-bit hash. 2007-10-05 17:36:31 +00:00
stringpool.h
strtab.h
symtab.cc Implement -s and -S options which strip symbols. 2007-10-10 19:02:56 +00:00
symtab.h
target-reloc.h
target-select.cc
target-select.h
target.h
tls.h From Craig Silverstein: add tls.h, use it in i386.cc. 2007-10-08 05:12:59 +00:00
version.cc Create a note section with the version of gold. 2007-10-09 21:37:55 +00:00
workqueue.cc
workqueue.h
x86_64.cc From Craig Silverstein: x86_64 TLS support. 2007-10-04 22:28:36 +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.