mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-15 06:29:05 +00:00
link' is being renamed to
llvm-link'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8541 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
LEVEL = ../..
|
LEVEL = ../..
|
||||||
|
|
||||||
TOOLNAME = link
|
TOOLNAME = llvm-link
|
||||||
USEDLIBS = bcreader bcwriter transformutils.a vmcore support.a
|
USEDLIBS = bcreader bcwriter transformutils.a vmcore support.a
|
||||||
|
|
||||||
include $(LEVEL)/Makefile.common
|
include $(LEVEL)/Makefile.common
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
// LLVM 'LINK' UTILITY
|
// LLVM 'LINK' UTILITY
|
||||||
//
|
//
|
||||||
// This utility may be invoked in the following manner:
|
// 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)
|
if (FoundAFile)
|
||||||
std::cerr << "Bytecode file '" << FN << "' corrupt! "
|
std::cerr << "Bytecode file '" << FN << "' corrupt! "
|
||||||
<< "Use 'link -v ...' for more info.\n";
|
<< "Use 'llvm-link -v ...' for more info.\n";
|
||||||
else
|
else
|
||||||
std::cerr << "Could not locate bytecode file: '" << FN << "'\n";
|
std::cerr << "Could not locate bytecode file: '" << FN << "'\n";
|
||||||
return std::auto_ptr<Module>();
|
return std::auto_ptr<Module>();
|
||||||
|
Reference in New Issue
Block a user