Welcome to ftp.nluug.nl Current directory: /pub/os/BSD/NetBSD/NetBSD-current/src/external/gpl3/binutils/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-2024 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/ 29-Nov-2024 04:02 - po/ 01-Jul-2024 05:01 - ChangeLog 01-Jul-2024 05:01 9.7K ChangeLog-0815 26-Oct-2016 19:30 737K ChangeLog-2016 15-Apr-2018 00:18 64K ChangeLog-2017 15-Apr-2018 00:18 31K ChangeLog-2018 04-Apr-2020 01:40 30K ChangeLog-2019 04-Apr-2020 01:40 10K ChangeLog-2020 23-Dec-2022 20:01 20K Makefile.am 01-Jul-2024 05:01 12K Makefile.in 01-Jul-2024 05:01 62K NEWS 01-Jul-2024 05:01 2.4K README 01-Jul-2024 05:01 2.8K TODO 18-Aug-2009 12:07 969 aarch64-reloc-property.cc 01-Jul-2024 05:01 5.1K aarch64-reloc-property.h 01-Jul-2024 05:01 7.0K aarch64-reloc.def 01-Jul-2024 05:01 14K aarch64.cc 01-Jul-2024 05:01 270K aclocal.m4 01-Jul-2024 05:01 44K archive.cc 01-Jul-2024 05:01 38K archive.h 01-Jul-2024 05:01 15K arm-reloc-property.cc 01-Jul-2024 05:01 9.3K arm-reloc-property.h 01-Jul-2024 05:01 11K arm-reloc.def 01-Jul-2024 05:01 13K arm.cc 01-Jul-2024 05:01 423K attributes.cc 01-Jul-2024 05:01 13K attributes.h 01-Jul-2024 05:01 11K binary.cc 01-Jul-2024 05:01 11K binary.h 01-Jul-2024 05:01 3.2K common.cc 01-Jul-2024 05:01 9.6K common.h 01-Jul-2024 05:01 1.6K compressed_output.cc 01-Jul-2024 05:01 11K compressed_output.h 01-Jul-2024 05:01 2.6K config.in 01-Jul-2024 05:01 9.0K configure 02-Jul-2024 05:00 448K configure.ac 01-Jul-2024 05:01 23K configure.tgt 01-Jul-2024 05:01 4.4K copy-relocs.cc 01-Jul-2024 05:01 8.7K copy-relocs.h 01-Jul-2024 05:01 5.9K cref.cc 01-Jul-2024 05:01 10K cref.h 01-Jul-2024 05:01 2.0K debug.h 01-Jul-2024 05:01 2.5K defstd.cc 01-Jul-2024 05:01 7.6K defstd.h 01-Jul-2024 05:01 1.1K descriptors.cc 01-Jul-2024 05:01 7.9K descriptors.h 01-Jul-2024 05:01 3.6K dirsearch.cc 01-Jul-2024 05:01 7.0K dirsearch.h 01-Jul-2024 05:01 2.8K dwarf_reader.cc 01-Jul-2024 05:01 84K dwarf_reader.h 01-Jul-2024 05:01 35K dwp.cc 01-Jul-2024 05:01 72K dwp.h 01-Jul-2024 05:01 3.2K dynobj.cc 01-Jul-2024 05:01 55K dynobj.h 01-Jul-2024 05:01 19K ehframe.cc 01-Jul-2024 05:01 40K ehframe.h 01-Jul-2024 05:01 16K errors.cc 01-Jul-2024 05:01 10K errors.h 01-Jul-2024 05:01 4.1K expression.cc 01-Jul-2024 05:01 36K ffsll.c 01-Jul-2024 05:01 1.4K fileread.cc 01-Jul-2024 05:01 30K fileread.h 01-Jul-2024 05:01 17K freebsd.h 01-Jul-2024 05:01 3.0K ftruncate.c 01-Jul-2024 05:01 2.4K gc.cc 01-Jul-2024 05:01 2.2K gc.h 01-Jul-2024 05:01 13K gdb-index.cc 01-Jul-2024 05:01 40K gdb-index.h 01-Jul-2024 05:01 7.3K gold-threads.cc 01-Jul-2024 05:01 9.0K gold-threads.h 01-Jul-2024 05:01 5.6K gold.cc 01-Jul-2024 05:01 30K gold.h 01-Jul-2024 05:01 9.1K i386.cc 01-Jul-2024 05:01 140K icf.cc 01-Jul-2024 05:01 43K icf.h 01-Jul-2024 05:01 6.7K incremental-dump.cc 01-Jul-2024 05:01 17K incremental.cc 01-Jul-2024 05:01 97K incremental.h 01-Jul-2024 05:01 64K int_encoding.cc 01-Jul-2024 05:01 3.3K int_encoding.h 01-Jul-2024 05:01 4.9K layout.cc 01-Jul-2024 05:01 200K layout.h 01-Jul-2024 05:01 52K main.cc 01-Jul-2024 05:01 11K mapfile.cc 01-Jul-2024 05:01 10K mapfile.h 01-Jul-2024 05:01 2.9K merge.cc 01-Jul-2024 05:01 19K merge.h 01-Jul-2024 05:01 15K mips.cc 01-Jul-2024 05:01 441K mremap.c 01-Jul-2024 05:01 2.4K nacl.cc 01-Jul-2024 05:01 1.3K nacl.h 01-Jul-2024 05:01 6.9K object.cc 01-Jul-2024 05:01 112K object.h 01-Jul-2024 05:01 94K options.cc 01-Jul-2024 05:01 46K options.h 01-Jul-2024 05:01 87K output.cc 01-Jul-2024 05:01 157K output.h 01-Jul-2024 05:01 146K parameters.cc 01-Jul-2024 05:01 9.6K parameters.h 01-Jul-2024 05:01 6.3K plugin.cc 01-Jul-2024 05:01 61K plugin.h 01-Jul-2024 05:01 17K powerpc.cc 01-Jul-2024 05:01 386K pread.c 01-Jul-2024 05:01 1.4K readsyms.cc 01-Jul-2024 05:01 26K readsyms.h 01-Jul-2024 05:01 13K reduced_debug_output.cc 01-Jul-2024 05:01 14K reduced_debug_output.h 01-Jul-2024 05:01 4.2K reloc-types.h 01-Jul-2024 05:01 2.7K reloc.cc 01-Jul-2024 05:01 54K reloc.h 01-Jul-2024 05:01 38K resolve.cc 01-Jul-2024 05:01 39K s390.cc 01-Jul-2024 05:01 147K script-c.h 01-Jul-2024 05:01 16K script-sections.cc 01-Jul-2024 05:01 128K script-sections.h 01-Jul-2024 05:01 11K script.cc 01-Jul-2024 05:01 96K script.h 01-Jul-2024 05:01 19K sparc.cc 01-Jul-2024 05:01 134K stringpool.cc 01-Jul-2024 05:01 15K stringpool.h 01-Jul-2024 05:01 13K symtab.cc 01-Jul-2024 05:01 118K symtab.h 01-Jul-2024 05:01 64K system.h 01-Jul-2024 05:01 4.8K target-reloc.h 01-Jul-2024 05:01 32K target-select.cc 01-Jul-2024 05:01 5.6K target-select.h 01-Jul-2024 05:01 8.4K target.cc 01-Jul-2024 05:01 7.3K target.h 01-Jul-2024 05:01 41K tilegx.cc 01-Jul-2024 05:01 189K timer.cc 01-Jul-2024 05:01 3.1K timer.h 01-Jul-2024 05:01 1.8K tls.h 01-Jul-2024 05:01 2.5K token.h 01-Jul-2024 05:01 7.9K version.cc 01-Jul-2024 05:01 2.3K workqueue-internal.h 01-Jul-2024 05:01 2.8K workqueue-threads.cc 01-Jul-2024 05:01 4.7K workqueue.cc 01-Jul-2024 05:01 12K workqueue.h 01-Jul-2024 05:01 7.4K x86_64.cc 01-Jul-2024 05:01 195K yyscript.c 01-Jul-2024 05:01 152K yyscript.h 01-Jul-2024 05:01 11K yyscript.y 01-Jul-2024 05:01 30K
NLUUG - Open Systems. Open Standards
Become a member
and get discounts on conferences and more, see the NLUUG website!