ELF: Make link() to take an output stream to which error messages are written.
authorRui Ueyama <ruiu@google.com>
Tue, 2 Feb 2016 22:49:32 +0000 (22:49 +0000)
committerRui Ueyama <ruiu@google.com>
Tue, 2 Feb 2016 22:49:32 +0000 (22:49 +0000)
http://reviews.llvm.org/D16668

llvm-svn: 259597

lld/ELF/Driver.cpp
lld/ELF/Driver.h
lld/ELF/Error.cpp
lld/ELF/Error.h
lld/include/lld/Driver/Driver.h
lld/lib/Driver/UniversalDriver.cpp

index 8340206..a417204 100644 (file)
@@ -29,8 +29,9 @@ using namespace lld::elf2;
 Configuration *elf2::Config;
 LinkerDriver *elf2::Driver;
 
-bool elf2::link(ArrayRef<const char *> Args) {
+bool elf2::link(ArrayRef<const char *> Args, raw_ostream &Error) {
   HasError = false;
+  ErrorOS = &Error;
   Configuration C;
   LinkerDriver D;
   Config = &C;
index adcf457..a8c6e9c 100644 (file)
@@ -14,6 +14,7 @@
 #include "lld/Core/LLVM.h"
 #include "llvm/ADT/StringRef.h"
 #include "llvm/Option/ArgList.h"
+#include "llvm/Support/raw_ostream.h"
 
 namespace lld {
 namespace elf2 {
@@ -21,7 +22,7 @@ namespace elf2 {
 extern class LinkerDriver *Driver;
 
 // Entry point of the ELF linker. Returns true on success.
-bool link(ArrayRef<const char *> Args);
+bool link(ArrayRef<const char *> Args, llvm::raw_ostream &Error = llvm::errs());
 
 class LinkerDriver {
 public:
index e3add1b..4a5b8af 100644 (file)
@@ -16,11 +16,12 @@ namespace lld {
 namespace elf2 {
 
 bool HasError;
+llvm::raw_ostream *ErrorOS;
 
 void warning(const Twine &Msg) { llvm::errs() << Msg << "\n"; }
 
 void error(const Twine &Msg) {
-  llvm::errs() << Msg << "\n";
+  *ErrorOS << Msg << "\n";
   HasError = true;
 }
 
index 546e1d3..55782b1 100644 (file)
 
 #include "lld/Core/LLVM.h"
 
+namespace llvm {
+class raw_ostream;
+}
+
 namespace lld {
 namespace elf2 {
 
 extern bool HasError;
+extern llvm::raw_ostream *ErrorOS;
 
 void warning(const Twine &Msg);
 
index f860cb6..7b4a381 100644 (file)
@@ -125,7 +125,7 @@ void link(llvm::ArrayRef<const char *> args);
 }
 
 namespace elf2 {
-bool link(llvm::ArrayRef<const char *> args);
+bool link(llvm::ArrayRef<const char *> args, raw_ostream &diag = llvm::errs());
 }
 
 /// Driver for lld unit tests
index 6014845..8df3365 100644 (file)
@@ -205,7 +205,7 @@ bool UniversalDriver::link(llvm::MutableArrayRef<const char *> args,
   case Flavor::old_gnu_ld:
     return GnuLdDriver::linkELF(args, diagnostics);
   case Flavor::gnu_ld:
-    return elf2::link(args);
+    return elf2::link(args, diagnostics);
   case Flavor::darwin_ld:
     return DarwinLdDriver::linkMachO(args, diagnostics);
   case Flavor::win_link: