index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Linker
/
LinkArchives.cpp
Age
Commit message (
Expand
)
Author
2006-07-07
Finish removal of EH usage from the Archive library. The REQUIRES_EH flag
Reid Spencer
2005-04-21
Remove trailing whitespace
Misha Brukman
2005-03-15
fix some 80 column violations
Chris Lattner
2005-03-15
This mega patch converts us from using Function::a{iterator|begin|end} to
Chris Lattner
2005-02-13
Minor cleanup. No need to explicitly tell the compiler the template arguments.
Chris Lattner
2005-02-13
Print something useful for gccld -v with an archive.
Chris Lattner
2004-12-20
Remove un-needed #includes.
Reid Spencer
2004-12-13
For PR351: \
Reid Spencer
2004-12-02
PR466:
Reid Spencer
2004-11-30
Revert version 1.39. It breaks the ordering of the library processing.
Reid Spencer
2004-11-29
Shared library extension is now in LTDL_SHLIB_EXT
Reid Spencer
2004-11-25
Implement dependent library linking. It is no longer required that -lstdc++
Reid Spencer
2004-11-19
Eliminate unsightly ;;
Reid Spencer
2004-11-19
Reduce the amount of work in LinkInArchive by not searching the archive for
Reid Spencer
2004-11-16
Per code review:\
Reid Spencer
2004-11-16
use an autoptr
Chris Lattner
2004-11-14
Remove a forgotten debug output line.
Reid Spencer
2004-11-14
Linker.h has a new home.
Reid Spencer
2004-11-14
*Adjust prototypes for public interface. *Rewrite LinkInArchive to use symbol...
Reid Spencer
2004-11-12
This file originated in tools/gccld/Linker.cpp but now lives in
Reid Spencer
2004-11-09
Output the program name (in this case, gccld) with warning about invalid files
Misha Brukman
2004-11-08
Don't silently ignore invalid files: tell the user!
Misha Brukman
2004-09-01
Changes For Bug 352
Reid Spencer
2004-06-23
Linker.h moved to include/llvm/Support
Misha Brukman
2004-06-02
Move some functions out of gccld.cpp to GenerateCode.cpp. This allows us
Chris Lattner
2004-05-27
Header file moved
Chris Lattner
2004-04-15
Don't use invalid HTML in a doxygen comment.
Misha Brukman
2004-02-23
Include Config/config.h for SHLIBEXT.
Alkis Evlogimenos
2004-01-26
Fixes for PR214. Use the SHLIBEXT variable instead of hardcoding .so into
John Criswell
2003-12-23
Modified the logic so that library objects with main() are only linked in
John Criswell
2003-12-23
Modified the linker so that it always links in an object from an archive
John Criswell
2003-11-28
* The return value of LinkLibraries is ignored, so remove it.
Chris Lattner
2003-11-20
Add ability to search only for native shared object, and expose the
Misha Brukman
2003-11-16
When we find a module we want, in an archive, in verbose mode,
Brian Gaeke
2003-11-11
Put all LLVM code into the llvm namespace, as per bug 109.
Brian Gaeke
2003-11-11
Move IsArchive, IsBytecode to FileUtilities. Fix up some method comments.
Brian Gaeke
2003-11-11
This version of Linker.cpp works a lot better, but it's a little messy. Sorry.
Brian Gaeke
2003-11-05
Shorten and correct some function-header comments.
Brian Gaeke
2003-10-21
Fix off-by-one error in processing of libraries named on command line.
Brian Gaeke
2003-10-20
fix file header
Chris Lattner
2003-10-20
Added copyright header to all C++ source files.
John Criswell
2003-10-10
Don't include "Config/stdlib.h".
Brian Gaeke
2003-10-08
Make more error messages have gccld's name in them.
Brian Gaeke
2003-09-30
Doxygen-ified comments.
Misha Brukman
2003-09-30
Made code more terse:
Misha Brukman
2003-09-30
1. Use better error messages in LinkFiles().
Brian Gaeke
2003-09-30
Update file headers for renamed files.
Chris Lattner
2003-09-29
Tersified code:
Misha Brukman
2003-09-29
* Ordered includes according to LLVM programmers' guide
Misha Brukman
2003-09-19
Removed linking functionality from gccld.cpp and moved it to linker.cpp.
John Criswell