Welcome to ftp.nluug.nl Current directory: /NetBSD/NetBSD-release-10/src/external/gpl3/binutils.old/dist/gold/ |
|
Contents of 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. For normal use it is a drop-in replacement for the older GNU linker. gold is part of the GNU binutils. See ../binutils/README for more general notes, including where to send bug reports. gold was originally developed at Google, and was contributed to the Free Software Foundation in March 2008. At Google it was designed by Ian Lance Taylor, with major contributions by Cary Coutant, Craig Silverstein, and Andrew Chatham. The existing GNU linker manual is intended to be accurate documentation for features which gold supports. gold supports most of the features of the GNU linker for ELF targets. Notable omissions--features of the GNU linker not currently supported in gold--are: * MRI compatible linker scripts * cross-reference reports (--cref) * various other minor options Notes on the code ================= These are some notes which may be helpful to people working on the source code of gold itself. gold is written in C++. It is a GNU program, and therefore follows the GNU formatting standards as modified for C++. Source documents in order of decreasing precedence: http://www.gnu.org/prep/standards/ http://gcc.gnu.org/onlinedocs/libstdc++/manual/source_code_style.html http://www.zembu.com/eng/procs/c++style.html The linker is intended to have complete support for cross-compilation, while still supporting the normal case of native linking as fast as possible. In order to do this, many classes are actually templates whose parameter is the ELF file class (e.g., 32 bits or 64 bits). The C++ code is the same, but we don't pay the execution time cost of always using 64-bit integers if the target is 32 bits. Many of these class templates also have an endianness parameter: true for big-endian, false for little-endian. The linker is multi-threaded. The Task class represents a single unit of work. Task objects are stored on a single Workqueue object. Tasks communicate via Task_token objects. Task_token objects are only manipulated while holding the master Workqueue lock. Relatively few mutexes are used. Build requirements ================== The gold source code uses templates heavily. Building it requires a recent version of g++. g++ 4.0.3 and 4.1.3 are known to work. g++ 3.2, 3.4.3, and 4.1.2 are known to fail. The linker script parser uses features which are only in newer versions of bison. bison 2.3 is known to work. bison 1.26 is known to fail. If you are building gold from an official binutils release, the bison output should already be included. Copyright (C) 2012-2018 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. |
Name Last modified Size
Parent Directory - CVS/ 11-Nov-2024 04:07 - po/ 17-Dec-2022 21:32 - ChangeLog 03-Apr-2020 19:51 25K ChangeLog-0815 14-Apr-2018 17:36 737K ChangeLog-2016 03-Apr-2020 19:41 64K ChangeLog-2017 03-Apr-2020 19:41 31K Makefile.am 03-Apr-2020 19:51 10K Makefile.in 03-Apr-2020 19:51 60K NEWS 03-Apr-2020 19:51 2.2K README 03-Apr-2020 19:51 2.8K TODO 14-Apr-2018 17:49 969 aarch64-reloc-property.cc 03-Apr-2020 19:51 5.1K aarch64-reloc-property.h 03-Apr-2020 19:51 7.0K aarch64-reloc.def 03-Apr-2020 19:51 14K aarch64.cc 03-Apr-2020 19:51 269K aclocal.m4 03-Apr-2020 19:51 44K archive.cc 03-Apr-2020 19:51 38K archive.h 03-Apr-2020 19:51 15K arm-reloc-property.cc 03-Apr-2020 19:51 9.3K arm-reloc-property.h 03-Apr-2020 19:51 11K arm-reloc.def 03-Apr-2020 19:51 13K arm.cc 03-Apr-2020 19:51 422K attributes.cc 03-Apr-2020 19:51 13K attributes.h 03-Apr-2020 19:51 11K binary.cc 03-Apr-2020 19:51 11K binary.h 03-Apr-2020 19:51 3.2K common.cc 03-Apr-2020 19:51 9.6K common.h 03-Apr-2020 19:51 1.6K compressed_output.cc 03-Apr-2020 19:51 10K compressed_output.h 03-Apr-2020 19:51 2.6K config.in 03-Apr-2020 19:51 7.7K configure 03-Apr-2020 19:51 343K configure.ac 03-Apr-2020 19:51 22K configure.tgt 03-Apr-2020 19:51 4.3K copy-relocs.cc 03-Apr-2020 19:51 8.7K copy-relocs.h 03-Apr-2020 19:51 5.9K cref.cc 03-Apr-2020 19:51 10K cref.h 03-Apr-2020 19:51 2.0K debug.h 03-Apr-2020 19:51 2.5K defstd.cc 03-Apr-2020 19:51 7.6K defstd.h 03-Apr-2020 19:51 1.1K descriptors.cc 03-Apr-2020 19:51 7.9K descriptors.h 03-Apr-2020 19:51 3.6K dirsearch.cc 03-Apr-2020 19:51 7.0K dirsearch.h 03-Apr-2020 19:51 2.8K dwarf_reader.cc 03-Apr-2020 19:51 72K dwarf_reader.h 03-Apr-2020 19:51 34K dwp.cc 03-Apr-2020 19:51 72K dwp.h 03-Apr-2020 19:51 3.2K dynobj.cc 03-Apr-2020 19:51 55K dynobj.h 03-Apr-2020 19:51 19K ehframe.cc 03-Apr-2020 19:51 40K ehframe.h 03-Apr-2020 19:51 16K errors.cc 03-Apr-2020 19:51 9.9K errors.h 03-Apr-2020 19:51 4.0K expression.cc 03-Apr-2020 19:51 36K ffsll.c 03-Apr-2020 19:51 1.4K fileread.cc 03-Apr-2020 19:51 29K fileread.h 03-Apr-2020 19:51 17K freebsd.h 03-Apr-2020 19:51 3.0K ftruncate.c 03-Apr-2020 19:51 2.4K gc.cc 03-Apr-2020 19:51 2.2K gc.h 03-Apr-2020 19:51 13K gdb-index.cc 03-Apr-2020 19:51 40K gdb-index.h 03-Apr-2020 19:51 7.3K gold-threads.cc 03-Apr-2020 19:51 9.0K gold-threads.h 03-Apr-2020 19:51 5.6K gold.cc 03-Apr-2020 19:51 29K gold.h 03-Apr-2020 19:51 9.0K i386.cc 03-Apr-2020 19:51 140K icf.cc 03-Apr-2020 19:51 35K icf.h 03-Apr-2020 19:51 5.6K incremental-dump.cc 03-Apr-2020 19:51 17K incremental.cc 03-Apr-2020 19:51 96K incremental.h 03-Apr-2020 19:51 64K int_encoding.cc 03-Apr-2020 19:51 3.5K int_encoding.h 03-Apr-2020 19:51 4.9K layout.cc 03-Apr-2020 19:51 197K layout.h 03-Apr-2020 19:51 52K main.cc 03-Apr-2020 19:51 10K mapfile.cc 03-Apr-2020 19:51 10K mapfile.h 03-Apr-2020 19:51 2.9K merge.cc 03-Apr-2020 19:51 19K merge.h 03-Apr-2020 19:51 15K mips.cc 03-Apr-2020 19:51 440K mremap.c 03-Apr-2020 19:51 2.4K nacl.cc 03-Apr-2020 19:51 1.3K nacl.h 03-Apr-2020 19:51 6.9K object.cc 03-Apr-2020 19:51 110K object.h 03-Apr-2020 19:51 94K options.cc 03-Apr-2020 19:51 43K options.h 03-Apr-2020 19:51 85K output.cc 03-Apr-2020 19:51 158K output.h 03-Apr-2020 19:51 146K parameters.cc 03-Apr-2020 19:51 9.6K parameters.h 03-Apr-2020 19:51 6.3K plugin.cc 03-Apr-2020 19:51 61K plugin.h 03-Apr-2020 19:51 17K powerpc.cc 03-Apr-2020 19:51 321K pread.c 03-Apr-2020 19:51 1.4K readsyms.cc 03-Apr-2020 19:51 26K readsyms.h 03-Apr-2020 19:51 13K reduced_debug_output.cc 03-Apr-2020 19:51 14K reduced_debug_output.h 03-Apr-2020 19:51 4.2K reloc-types.h 03-Apr-2020 19:51 2.7K reloc.cc 03-Apr-2020 19:51 54K reloc.h 03-Apr-2020 19:51 38K resolve.cc 03-Apr-2020 19:51 39K s390.cc 03-Apr-2020 19:51 147K script-c.h 03-Apr-2020 19:51 16K script-sections.cc 03-Apr-2020 19:51 128K script-sections.h 03-Apr-2020 19:51 11K script.cc 03-Apr-2020 19:51 96K script.h 03-Apr-2020 19:51 19K sparc.cc 03-Apr-2020 19:51 134K stringpool.cc 03-Apr-2020 19:51 15K stringpool.h 03-Apr-2020 19:51 13K symtab.cc 03-Apr-2020 19:51 118K symtab.h 03-Apr-2020 19:51 64K system.h 03-Apr-2020 19:51 4.8K target-reloc.h 03-Apr-2020 19:51 32K target-select.cc 03-Apr-2020 19:51 5.6K target-select.h 03-Apr-2020 19:51 8.4K target.cc 03-Apr-2020 19:51 7.3K target.h 03-Apr-2020 19:51 41K tilegx.cc 03-Apr-2020 19:51 189K timer.cc 03-Apr-2020 19:51 3.1K timer.h 03-Apr-2020 19:51 1.8K tls.h 03-Apr-2020 19:51 2.5K token.h 03-Apr-2020 19:51 7.9K version.cc 03-Apr-2020 19:51 2.3K workqueue-internal.h 03-Apr-2020 19:51 2.8K workqueue-threads.cc 03-Apr-2020 19:51 4.7K workqueue.cc 03-Apr-2020 19:51 12K workqueue.h 03-Apr-2020 19:51 7.4K x86_64.cc 03-Apr-2020 19:51 203K yyscript.c 03-Apr-2020 19:41 131K yyscript.h 03-Apr-2020 19:41 7.4K yyscript.y 03-Apr-2020 19:51 30K
NLUUG - Open Systems. Open Standards
Become a member
and get discounts on conferences and more, see the NLUUG website!