mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +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:
parent
1b82432a83
commit
3ef3beb1d7
@ -1,6 +1,6 @@
|
||||
LEVEL = ../..
|
||||
|
||||
TOOLNAME = link
|
||||
TOOLNAME = llvm-link
|
||||
USEDLIBS = bcreader bcwriter transformutils.a vmcore support.a
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
@ -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>();
|
||||
|
Loading…
Reference in New Issue
Block a user