hanchenye-llvm-project/lld/ELF
Rui Ueyama 4b02ca99d0 ELF: Move utility functions from Driver to DriverUtils.
llvm-svn: 249966
2015-10-11 03:28:39 +00:00
..
CMakeLists.txt ELF2: Create LinkerScript.cpp and move code from DriverUtils to there. 2015-09-30 17:23:26 +00:00
Config.h ELF2: Add --verbose. 2015-10-11 02:03:03 +00:00
Driver.cpp ELF: Move utility functions from Driver to DriverUtils. 2015-10-11 03:28:39 +00:00
Driver.h ELF: Move utility functions from Driver to DriverUtils. 2015-10-11 03:28:39 +00:00
DriverUtils.cpp ELF: Move utility functions from Driver to DriverUtils. 2015-10-11 03:28:39 +00:00
Error.cpp [ELF2] Output of all unknown arguments instead of only one. 2015-09-24 18:55:33 +00:00
Error.h [ELF2] Output of all unknown arguments instead of only one. 2015-09-24 18:55:33 +00:00
InputFiles.cpp Add support for comdats. 2015-10-09 19:25:07 +00:00
InputFiles.h Add support for comdats. 2015-10-09 19:25:07 +00:00
InputSection.cpp ELF2: Do not pass GotVA because it's accessible as Out<ELFT>::Got->getVA(). 2015-10-08 20:06:07 +00:00
InputSection.h Add support for comdats. 2015-10-09 19:25:07 +00:00
LinkerScript.cpp ELF2: Do not leak MemoryBuffers. 2015-10-11 01:53:04 +00:00
Options.td ELF2: Add --verbose. 2015-10-11 02:03:03 +00:00
OutputSections.cpp ELF2: Make SymbolTable a template class. 2015-10-09 21:07:25 +00:00
OutputSections.h ELF2: Make SymbolTable a template class. 2015-10-09 21:07:25 +00:00
README.md ELF2: Update README. 2015-10-06 19:21:13 +00:00
SymbolTable.cpp ELF2: Move Target and entry initialization from SymbolTable to Driver. 2015-10-09 21:12:40 +00:00
SymbolTable.h ELF2: Move Target and entry initialization from SymbolTable to Driver. 2015-10-09 21:12:40 +00:00
Symbols.cpp ELF2: Inititalize other symbols only once as well. 2015-10-08 00:44:28 +00:00
Symbols.h [ELF2] Check for TLS mismatch in symbol resolution. 2015-10-09 09:58:39 +00:00
Target.cpp [ELF2] Make the system page size a target-dependent property 2015-10-08 22:23:54 +00:00
Target.h [ELF2] Make the system page size a target-dependent property 2015-10-08 22:23:54 +00:00
Writer.cpp ELF2: Use memcpy to vector contents. 2015-10-11 00:10:36 +00:00
Writer.h ELF2: Make SymbolTable a template class. 2015-10-09 21:07:25 +00:00

README.md

The New ELF Linker

This directory contains a port of the new PE/COFF linker for ELF.

Overall Design

See COFF/README.md for details on the design. Note that unlike COFF, we do not distinguish chunks from input sections; they are merged together.

Capabilities

This linker can link LLVM and Clang on Linux x86-64 with -LLVM_ENABLE_THREADS=OFF.