hanchenye-llvm-project/lld/ELF
Rui Ueyama 361d8b9350 Early return.
llvm-svn: 250054
2015-10-12 15:49:02 +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 Simplify the InputFile type hierarchy. 2015-10-12 01:55:32 +00:00
Driver.cpp ELF2: Handle default entry name in the driver. 2015-10-12 15:23:54 +00:00
Driver.h Simplify the InputFile type hierarchy. 2015-10-12 01:55:32 +00:00
DriverUtils.cpp ELF2: Remove ArgParser class and define parseArgs() function instead. 2015-10-11 18:19:01 +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 Early return. 2015-10-12 15:49:02 +00:00
InputFiles.h ELF2: Move createELFFile() from .h to .cpp. 2015-10-12 15:31:09 +00:00
InputSection.cpp ELF2: Implement --as-needed. 2015-10-11 20:59:12 +00:00
InputSection.h Add support for comdats. 2015-10-09 19:25:07 +00:00
LinkerScript.cpp ELF2: Implement --as-needed. 2015-10-11 20:59:12 +00:00
Options.td ELF2: Implement --as-needed. 2015-10-11 20:59:12 +00:00
OutputSections.cpp ELF2: Implement --as-needed. 2015-10-11 20:59:12 +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 Delete getFirstELF. 2015-10-12 11:52:31 +00:00
SymbolTable.h Delete getFirstELF. 2015-10-12 11:52:31 +00:00
Symbols.cpp ELF2: Inititalize other symbols only once as well. 2015-10-08 00:44:28 +00:00
Symbols.h ELF2: Implement --as-needed. 2015-10-11 20:59:12 +00:00
Target.cpp ELF2: Handle default entry name in the driver. 2015-10-12 15:23:54 +00:00
Target.h ELF2: Handle default entry name in the driver. 2015-10-12 15:23:54 +00:00
Writer.cpp Delete getFirstELF. 2015-10-12 11:52:31 +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.