binutils-gdb/gold
Ian Lance Taylor 92e059d8dc Framework for relocation scanning. Implement simple static TLS
relocations.
2006-10-20 20:40:49 +00:00
..
po Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +00:00
Makefile.am Snapshot. Now able to produce a minimal executable which actually 2006-09-29 19:58:17 +00:00
Makefile.in Snapshot. Now able to produce a minimal executable which actually 2006-09-29 19:58:17 +00:00
README
aclocal.m4
archive.cc Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +00:00
archive.h Lay out object file sections when we add the symbols to the symbol 2006-10-06 20:40:16 +00:00
config.in Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +00:00
configure Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +00:00
configure.ac Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +00:00
dirsearch.cc
dirsearch.h
fileread.cc Snapshot. Now able to produce a minimal executable which actually 2006-09-29 19:58:17 +00:00
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 Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +00:00
gold.h Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +00:00
i386.cc Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +00:00
layout.cc Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +00:00
layout.h Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +00:00
object.cc Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +00:00
object.h Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +00:00
options.cc Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +00:00
options.h Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +00:00
output.cc Clean up HAVE_MEMBER_TEMPLATE_SPECIFICATIONS somewhat. 2006-09-29 22:34:01 +00:00
output.h Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +00:00
readsyms.cc Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +00:00
readsyms.h Lay out object file sections when we add the symbols to the symbol 2006-10-06 20:40:16 +00:00
reloc.cc Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +00:00
reloc.h Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +00:00
resolve.cc Lay out object file sections when we add the symbols to the symbol 2006-10-06 20:40:16 +00:00
stringpool.cc Snapshot. Now able to produce a minimal executable which actually 2006-09-29 19:58:17 +00:00
stringpool.h Snapshot. Now able to produce a minimal executable which actually 2006-09-29 19:58:17 +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 Avoid multiple definition errors from linkonce sections. 2006-10-10 18:54:06 +00:00
symtab.h Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +00:00
target-reloc.h Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +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 Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +00:00
workqueue.cc Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +00:00
workqueue.h Framework for relocation scanning. Implement simple static TLS 2006-10-20 20:40:49 +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.