From 54d054b00c81409649f363404cc4b9222d1e885d Mon Sep 17 00:00:00 2001 From: kai Date: Fri, 20 Jul 2012 18:43:32 +0200 Subject: [PATCH] Fix #142. --- driver/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver/main.cpp b/driver/main.cpp index af9d774a..2b97ba61 100644 --- a/driver/main.cpp +++ b/driver/main.cpp @@ -85,7 +85,7 @@ void printVersion() { printf("D Language Documentation: http://d-programming-language.org/index.html\n" "LDC Homepage: https://github.com/ldc-developers/ldc\n"); printf("\n"); - printf(" Default target: %s\n", llvm::sys::getDefaultTargetTriple().c_str()); + printf(" Default target: %s\n", DEFAULT_TARGET_TRIPLE); std::string CPU = llvm::sys::getHostCPUName(); if (CPU == "generic") CPU = "(unknown)"; printf(" Host CPU: %s\n", CPU.c_str());