diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-08-08 19:52:29 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-08-08 19:52:29 +0000 |
commit | 8609c069565195dc3c7a324097942d1f36d13750 (patch) | |
tree | 61d582d2fdf26fab86575943a1014cc6678dcc33 | |
parent | 680862880d79cd06c60ba1a7de6e5c85a4e9aed6 (diff) | |
download | bcm5719-llvm-8609c069565195dc3c7a324097942d1f36d13750.tar.gz bcm5719-llvm-8609c069565195dc3c7a324097942d1f36d13750.zip |
Allow the filename "-" to be a place holder for stdin. This allows directing
stdin through llvm-ld and llvm-link.
llvm-svn: 40938
-rw-r--r-- | llvm/lib/Linker/LinkItems.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/llvm/lib/Linker/LinkItems.cpp b/llvm/lib/Linker/LinkItems.cpp index 3cf1f6bd8cd..ad0ccd2e3c1 100644 --- a/llvm/lib/Linker/LinkItems.cpp +++ b/llvm/lib/Linker/LinkItems.cpp @@ -14,6 +14,8 @@ #include "llvm/Linker.h" #include "llvm/Module.h" +#include "llvm/Support/MemoryBuffer.h" +#include "llvm/Bitcode/ReaderWriter.h" using namespace llvm; @@ -153,6 +155,20 @@ bool Linker::LinkInLibraries(const std::vector<std::string> &Libraries) { /// bool Linker::LinkInFile(const sys::Path &File, bool &is_native) { is_native = false; + + // Check for a file of name "-", which means "read standard input" + if (File.toString() == "-") { + std::auto_ptr<Module> M; + if (MemoryBuffer *Buffer = MemoryBuffer::getSTDIN()) { + M.reset(ParseBitcodeFile(Buffer, &Error)); + delete Buffer; + if (!LinkInModule(M.get())) + return false; + } else + Error = "standard input is empty"; + return error("Cannot link stdin: " + Error); + } + // Make sure we can at least read the file if (!File.canRead()) return error("Cannot find linker input '" + File.toString() + "'"); |