diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Linker/LinkArchives.cpp | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/lib/Linker/LinkArchives.cpp b/lib/Linker/LinkArchives.cpp index 59570526e1..0d0dc9faba 100644 --- a/lib/Linker/LinkArchives.cpp +++ b/lib/Linker/LinkArchives.cpp @@ -1,15 +1,7 @@ -//===- gccld.cpp - LLVM 'ld' compatible linker ----------------------------===// -// -// This utility is intended to be compatible with GCC, and follows standard -// system 'ld' conventions. As such, the default output file is ./a.out. -// Additionally, this program outputs a shell script that is used to invoke LLI -// to execute the program. In this manner, the generated executable (a.out for -// example), is directly executable, whereas the bytecode file actually lives in -// the a.out.bc file generated by this program. Also, Force is on by default. -// -// Note that if someone (or a script) deletes the executable program generated, -// the .bc file will be left around. Considering that this is a temporary hack, -// I'm not too worried about this. +//===- Linker.cpp - Link together LLVM objects and libraries --------------===// +// +// This file contains routines to handle linking together LLVM bytecode files, +// and to handle annoying things like static libraries. // //===----------------------------------------------------------------------===// |