diff --git a/src/CppParser/Parser.cpp b/src/CppParser/Parser.cpp index e5108b20..599687a2 100644 --- a/src/CppParser/Parser.cpp +++ b/src/CppParser/Parser.cpp @@ -284,6 +284,9 @@ void Parser::Setup() opts->targetTriple = llvm::sys::getDefaultTargetTriple(); TO->Triple = llvm::Triple::normalize(opts->targetTriple); + if (opts->verbose) + printf("Target triple: %s\n", TO->Triple.c_str()); + TargetInfo* TI = TargetInfo::CreateTargetInfo(c->getDiagnostics(), TO); if (!TI) {