From 6552478ee74abe6851cebc5762a1dbe6982bb122 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Wed, 2 Sep 2009 23:52:38 +0000 Subject: [PATCH] Show derived host triple in --version. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80855 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/CommandLine.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Support/CommandLine.cpp b/lib/Support/CommandLine.cpp index d45694b0461..666f6417a27 100644 --- a/lib/Support/CommandLine.cpp +++ b/lib/Support/CommandLine.cpp @@ -22,6 +22,7 @@ #include "llvm/Support/ManagedStatic.h" #include "llvm/Support/raw_ostream.h" #include "llvm/Target/TargetRegistry.h" +#include "llvm/System/Host.h" #include "llvm/System/Path.h" #include "llvm/ADT/OwningPtr.h" #include "llvm/Config/config.h" @@ -1135,6 +1136,7 @@ public: #endif outs() << ".\n" << " Built " << __DATE__ << " (" << __TIME__ << ").\n" + << " Host: " << sys::getHostTriple() << "\n" << "\n" << " Registered Targets:\n"; -- 2.11.0