binutils-gdb/gold
2007-10-24 18:11:23 +00:00
..
po Run all error handling through an Errors object. Delete output file 2007-10-14 06:49:14 +00:00
testsuite Use AC_GNU_SOURCE. 2007-10-24 18:11:23 +00:00
aclocal.m4
archive.cc Remove extraneous newlines. 2007-10-14 06:57:58 +00:00
archive.h
common.cc
common.h
config.in Use AC_GNU_SOURCE. 2007-10-24 18:11:23 +00:00
configure Use AC_GNU_SOURCE. 2007-10-24 18:11:23 +00:00
configure.ac Use AC_GNU_SOURCE. 2007-10-24 18:11:23 +00:00
defstd.cc
defstd.h
dirsearch.cc Run all error handling through an Errors object. Delete output file 2007-10-14 06:49:14 +00:00
dirsearch.h
dynobj.cc Add support for PT_GNU_STACK. 2007-10-23 05:05:48 +00:00
dynobj.h Add support for PT_GNU_STACK. 2007-10-23 05:05:48 +00:00
ehframe.cc
ehframe.h
errors.cc Run all error handling through an Errors object. Delete output file 2007-10-14 06:49:14 +00:00
errors.h Run all error handling through an Errors object. Delete output file 2007-10-14 06:49:14 +00:00
fileread.cc Implement -Bstatic/-Bdynamic. 2007-10-22 18:04:43 +00:00
fileread.h Run all error handling through an Errors object. Delete output file 2007-10-14 06:49:14 +00:00
gold-threads.cc Add infrastructure for threading support. 2007-10-17 06:24:50 +00:00
gold-threads.h
gold.cc Add infrastructure for threading support. 2007-10-17 06:24:50 +00:00
gold.h Run all error handling through an Errors object. Delete output file 2007-10-14 06:49:14 +00:00
i386.cc Add support for PT_GNU_STACK. 2007-10-23 05:05:48 +00:00
layout.cc Add support for PT_GNU_STACK. 2007-10-23 05:05:48 +00:00
layout.h Add support for PT_GNU_STACK. 2007-10-23 05:05:48 +00:00
main.cc Run all error handling through an Errors object. Delete output file 2007-10-14 06:49:14 +00:00
Makefile.am Use AC_GNU_SOURCE. 2007-10-24 18:11:23 +00:00
Makefile.in Use AC_GNU_SOURCE. 2007-10-24 18:11:23 +00:00
merge.cc From Craig Silverstein: add cast to avoid warning. 2007-10-20 04:35:43 +00:00
merge.h Correctly handle alignment in merge sections. 2007-10-18 17:46:23 +00:00
object.cc Add support for PT_GNU_STACK. 2007-10-23 05:05:48 +00:00
object.h Add infrastructure for threading support. 2007-10-17 06:24:50 +00:00
options.cc Add support for PT_GNU_STACK. 2007-10-23 05:05:48 +00:00
options.h Add support for PT_GNU_STACK. 2007-10-23 05:05:48 +00:00
output.cc Correctly handle alignment in merge sections. 2007-10-18 17:46:23 +00:00
output.h Correctly handle alignment in merge sections. 2007-10-18 17:46:23 +00:00
parameters.cc Add support for -Bsymbolic. 2007-10-18 23:20:53 +00:00
parameters.h Add support for -Bsymbolic. 2007-10-18 23:20:53 +00:00
pread.c
README
readsyms.cc Correct locking if a file could not be opened. 2007-10-22 18:02:36 +00:00
readsyms.h Correct locking if a file could not be opened. 2007-10-22 18:02:36 +00:00
reloc-types.h
reloc.cc Run all error handling through an Errors object. Delete output file 2007-10-14 06:49:14 +00:00
reloc.h
resolve.cc Fix versions of copied symbols. 2007-10-22 23:08:22 +00:00
script-c.h
script.cc Remove extraneous newlines. 2007-10-14 06:57:58 +00:00
script.h
stringpool.cc
stringpool.h
strtab.h
symtab.cc Add support for PT_GNU_STACK. 2007-10-23 05:05:48 +00:00
symtab.h Add support for PT_GNU_STACK. 2007-10-23 05:05:48 +00:00
target-reloc.h From Cary Coutant: preliminary shared library support. 2007-10-16 23:23:08 +00:00
target-select.cc
target-select.h
target.h Add support for PT_GNU_STACK. 2007-10-23 05:05:48 +00:00
tls.h Run all error handling through an Errors object. Delete output file 2007-10-14 06:49:14 +00:00
version.cc
workqueue.cc Add infrastructure for threading support. 2007-10-17 06:24:50 +00:00
workqueue.h Add infrastructure for threading support. 2007-10-17 06:24:50 +00:00
x86_64.cc Add support for PT_GNU_STACK. 2007-10-23 05:05:48 +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.