From 11a382157b23c9c644a9562cafd7ef3be11fe863 Mon Sep 17 00:00:00 2001 From: "John M. Penn" Date: Mon, 11 Dec 2017 18:19:11 -0600 Subject: [PATCH] Backport 476 to Trick 15. Ref #528 --- trick_source/codegen/Interface_Code_Gen/main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/trick_source/codegen/Interface_Code_Gen/main.cpp b/trick_source/codegen/Interface_Code_Gen/main.cpp index 8013da32..beb8066c 100644 --- a/trick_source/codegen/Interface_Code_Gen/main.cpp +++ b/trick_source/codegen/Interface_Code_Gen/main.cpp @@ -122,7 +122,11 @@ int main( int argc , char * argv[] ) { // Set all of the defaults to c++ #if (LIBCLANG_MAJOR > 3) || ((LIBCLANG_MAJOR == 3) && (LIBCLANG_MINOR >= 9)) llvm::Triple trip (to.Triple) ; +#if (LIBCLANG_MAJOR >= 5) + clang::CompilerInvocation::setLangDefaults(ci.getLangOpts(), clang::InputKind::CXX, trip, ppo) ; +#else clang::CompilerInvocation::setLangDefaults(ci.getLangOpts(), clang::IK_CXX, trip, ppo) ; +#endif // setting the language defaults clears the c++11 flag. ci.getLangOpts().CPlusPlus11 = true ; #endif