binutils-gdb/gold
Ian Lance Taylor 75f65a3e30 Finished layout code. 2006-09-27 22:53:42 +00:00
..
po Finished layout code. 2006-09-27 22:53:42 +00:00
Makefile.am New drop, with first cut of section layout code. 2006-09-21 22:13:18 +00:00
Makefile.in More section layout code. 2006-09-26 21:00:34 +00:00
README Initial CVS checkin of gold 2006-08-04 23:10:59 +00:00
aclocal.m4 Initial CVS checkin of gold 2006-08-04 23:10:59 +00:00
config.in g++ 3.2.2 portability for grhat. 2006-09-26 21:20:56 +00:00
configure g++ 3.2.2 portability for grhat. 2006-09-26 21:20:56 +00:00
configure.ac g++ 3.2.2 portability for grhat. 2006-09-26 21:20:56 +00:00
dirsearch.cc Include <cassert> 2006-08-04 23:20:34 +00:00
dirsearch.h Initial CVS checkin of gold 2006-08-04 23:10:59 +00:00
fileread.cc Initial CVS checkin of gold 2006-08-04 23:10:59 +00:00
fileread.h New drop, with first cut of section layout code. 2006-09-21 22:13:18 +00:00
gold-threads.cc Initial CVS checkin of gold 2006-08-04 23:10:59 +00:00
gold-threads.h Initial CVS checkin of gold 2006-08-04 23:10:59 +00:00
gold.cc Finished layout code. 2006-09-27 22:53:42 +00:00
gold.h g++ 3.2.2 portability fixes. 2006-09-26 21:50:25 +00:00
i386.cc Finished layout code. 2006-09-27 22:53:42 +00:00
layout.cc Finished layout code. 2006-09-27 22:53:42 +00:00
layout.h Finished layout code. 2006-09-27 22:53:42 +00:00
object.cc Finished layout code. 2006-09-27 22:53:42 +00:00
object.h Finished layout code. 2006-09-27 22:53:42 +00:00
options.cc Initial CVS checkin of gold 2006-08-04 23:10:59 +00:00
options.h New drop, with first cut of section layout code. 2006-09-21 22:13:18 +00:00
output.cc Finished layout code. 2006-09-27 22:53:42 +00:00
output.h Finished layout code. 2006-09-27 22:53:42 +00:00
readsyms.cc More section layout code. 2006-09-26 21:00:34 +00:00
readsyms.h More section layout code. 2006-09-26 21:00:34 +00:00
resolve.cc g++ 3.2.2 portability fixes. 2006-09-26 21:50:25 +00:00
stringpool.cc gcc 4.1.0 portability fixes. 2006-09-26 21:53:18 +00:00
stringpool.h g++ 3.2.2 portability fixes. 2006-09-26 21:50:25 +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 Finished layout code. 2006-09-27 22:53:42 +00:00
symtab.h Finished layout code. 2006-09-27 22:53:42 +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 Finished layout code. 2006-09-27 22:53:42 +00:00
workqueue.cc Include <cassert> 2006-08-04 23:20:34 +00:00
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.