From a69c90ee6a7c3b7bc390d49c1340934ef9cf27eb Mon Sep 17 00:00:00 2001 From: kai Date: Fri, 20 Jul 2012 17:29:56 +0200 Subject: [PATCH] Change error message for -mtriple argument. Should finally fix #130. --- driver/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver/main.cpp b/driver/main.cpp index 83da9b69..af9d774a 100644 --- a/driver/main.cpp +++ b/driver/main.cpp @@ -483,7 +483,7 @@ LDC_TARGETS theTarget = llvm::TargetRegistry::lookupTarget(triple, Err); if (theTarget == 0) { - error("failed to auto-select target: %s, please use the -march option", Err.c_str()); + error("%s Please use the -march option.", Err.c_str()); fatal(); } }