binutils-gdb/gold
Ian Lance Taylor 1564db8db6 More symbol resolution code. 2006-09-07 21:21:41 +00:00
..
po More symbol resolution code. 2006-09-07 21:21:41 +00:00
Makefile.am Another snapshot of the current state of the sources. Gets to the 2006-08-18 22:29:20 +00:00
Makefile.in Another snapshot of the current state of the sources. Gets to the 2006-08-18 22:29:20 +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 Initial CVS checkin of gold 2006-08-04 23:10:59 +00:00
configure Initial CVS checkin of gold 2006-08-04 23:10:59 +00:00
configure.ac Initial CVS checkin of gold 2006-08-04 23:10:59 +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 Initial CVS checkin of gold 2006-08-04 23:10:59 +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 Another snapshot of the current state of the sources. Gets to the 2006-08-18 22:29:20 +00:00
gold.h Initial CVS checkin of gold 2006-08-04 23:10:59 +00:00
i386.cc Another snapshot of the current state of the sources. Gets to the 2006-08-18 22:29:20 +00:00
object.cc Another snapshot of the current state of the sources. Gets to the 2006-08-18 22:29:20 +00:00
object.h Another snapshot of the current state of the sources. Gets to the 2006-08-18 22:29:20 +00:00
options.cc Initial CVS checkin of gold 2006-08-04 23:10:59 +00:00
options.h Initial CVS checkin of gold 2006-08-04 23:10:59 +00:00
readsyms.cc Another snapshot of the current state of the sources. Gets to the 2006-08-18 22:29:20 +00:00
readsyms.h Another snapshot of the current state of the sources. Gets to the 2006-08-18 22:29:20 +00:00
resolve.cc More symbol resolution code. 2006-09-07 21:21:41 +00:00
stringpool.cc Another snapshot of the current state of the sources. Gets to the 2006-08-18 22:29:20 +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 More symbol resolution code. 2006-09-07 21:21:41 +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
targetsize.h Initial CVS checkin of gold 2006-08-04 23:10:59 +00:00
workqueue.cc Include <cassert> 2006-08-04 23:20:34 +00:00
workqueue.h Initial CVS checkin of gold 2006-08-04 23:10:59 +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.