forked from OSchip/llvm-project
Improve JIT error message for users crazy enough to use -march with JIT, and
mention -version in messages about missing targets. llvm-svn: 81272
This commit is contained in:
parent
22833a3cd6
commit
6119d878bb
|
@ -26,7 +26,8 @@
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
static cl::opt<std::string>
|
static cl::opt<std::string>
|
||||||
MArch("march", cl::desc("Architecture to generate assembly for (see --version)"));
|
MArch("march",
|
||||||
|
cl::desc("Architecture to generate assembly for (see --version)"));
|
||||||
|
|
||||||
static cl::opt<std::string>
|
static cl::opt<std::string>
|
||||||
MCPU("mcpu",
|
MCPU("mcpu",
|
||||||
|
@ -61,7 +62,8 @@ TargetMachine *JIT::selectTarget(ModuleProvider *MP, std::string *ErrorStr) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!TheTarget) {
|
if (!TheTarget) {
|
||||||
errs() << "JIT: error: invalid target '" << MArch << "'.\n";
|
*ErrorStr = "No available targets are compatible with this -march, "
|
||||||
|
"see -version for the available targets.\n";
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -40,7 +40,8 @@ const Target *TargetRegistry::lookupTarget(const std::string &TT,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!Best) {
|
if (!Best) {
|
||||||
Error = "No available targets are compatible with this triple";
|
Error = "No available targets are compatible with this triple, "
|
||||||
|
"see -version for the available targets.";
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue