`link' is being renamed to `llvm-link'.
authorMisha Brukman <brukman+llvm@gmail.com>
Mon, 15 Sep 2003 18:34:34 +0000 (18:34 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Mon, 15 Sep 2003 18:34:34 +0000 (18:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8541 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-link/Makefile
tools/llvm-link/llvm-link.cpp

index 333236b5685ef974470a0f870a3046a563ef3686..00780c660beae6488387df09ffc0bf151f45388e 100644 (file)
@@ -1,6 +1,6 @@
 LEVEL = ../..
 
-TOOLNAME = link
+TOOLNAME = llvm-link
 USEDLIBS = bcreader bcwriter transformutils.a vmcore support.a
 
 include $(LEVEL)/Makefile.common
index 5c9e21c0b0ef1628f3e899ea1800f8a01ab2a8d0..b27622069870b028324aa34bfa41e4d525c736ca 100644 (file)
@@ -2,7 +2,7 @@
 // LLVM 'LINK' UTILITY 
 //
 // This utility may be invoked in the following manner:
-//  link a.bc b.bc c.bc -o x.bc
+//  llvm-link a.bc b.bc c.bc -o x.bc
 //
 //===----------------------------------------------------------------------===//
 
@@ -72,7 +72,7 @@ static inline std::auto_ptr<Module> LoadFile(const std::string &FN) {
 
   if (FoundAFile)
     std::cerr << "Bytecode file '" << FN << "' corrupt!  "
-              << "Use 'link -v ...' for more info.\n";
+              << "Use 'llvm-link -v ...' for more info.\n";
   else
     std::cerr << "Could not locate bytecode file: '" << FN << "'\n";
   return std::auto_ptr<Module>();