binutils-gdb/gold
Ian Lance Taylor a2fb1b05e4 New drop, with first cut of section layout code. 2006-09-21 22:13:18 +00:00
..
po New drop, with first cut of section layout code. 2006-09-21 22:13:18 +00:00
Makefile.am New drop, with first cut of section layout code. 2006-09-21 22:13:18 +00:00
Makefile.in New drop, with first cut of section layout code. 2006-09-21 22:13:18 +00:00
README
aclocal.m4
config.in
configure
configure.ac
dirsearch.cc
dirsearch.h
fileread.cc
fileread.h New drop, with first cut of section layout code. 2006-09-21 22:13:18 +00:00
gold-threads.cc
gold-threads.h
gold.cc New drop, with first cut of section layout code. 2006-09-21 22:13:18 +00:00
gold.h
i386.cc Another snapshot of the current state of the sources. Gets to the 2006-08-18 22:29:20 +00:00
layout.cc New drop, with first cut of section layout code. 2006-09-21 22:13:18 +00:00
layout.h New drop, with first cut of section layout code. 2006-09-21 22:13:18 +00:00
object.cc New drop, with first cut of section layout code. 2006-09-21 22:13:18 +00:00
object.h New drop, with first cut of section layout code. 2006-09-21 22:13:18 +00:00
options.cc
options.h New drop, with first cut of section layout code. 2006-09-21 22:13:18 +00:00
output.cc New drop, with first cut of section layout code. 2006-09-21 22:13:18 +00:00
output.h New drop, with first cut of section layout code. 2006-09-21 22:13:18 +00:00
readsyms.cc New drop, with first cut of section layout code. 2006-09-21 22:13:18 +00:00
readsyms.h New drop, with first cut of section layout code. 2006-09-21 22:13:18 +00:00
resolve.cc More symbol resolution code. 2006-09-07 21:21:41 +00:00
stringpool.cc New drop, with first cut of section layout code. 2006-09-21 22:13:18 +00:00
stringpool.h Another snapshot of the current state of the sources. Gets to the 2006-08-18 22:29:20 +00:00
strtab.h Another snapshot of the current state of the sources. Gets to the 2006-08-18 22:29:20 +00:00
symtab.cc More symbol resolution code. 2006-09-07 21:21:41 +00:00
symtab.h New drop, with first cut of section layout code. 2006-09-21 22:13:18 +00:00
target-select.cc Another snapshot of the current state of the sources. Gets to the 2006-08-18 22:29:20 +00:00
target-select.h Another snapshot of the current state of the sources. Gets to the 2006-08-18 22:29:20 +00:00
target.h Another snapshot of the current state of the sources. Gets to the 2006-08-18 22:29:20 +00:00
workqueue.cc
workqueue.h New drop, with first cut of section layout code. 2006-09-21 22:13:18 +00:00

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.