From 63c0a744f792cf2dd6f3c205b632cb713271857a Mon Sep 17 00:00:00 2001 From: Charles Davis Date: Sat, 12 Jun 2010 16:58:00 +0000 Subject: [PATCH] Really make the Itanium C++ ABI the default. llvm-svn: 105893 --- clang/include/clang/Basic/TargetOptions.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/clang/include/clang/Basic/TargetOptions.h b/clang/include/clang/Basic/TargetOptions.h index cec8f531586b..19b0cbbf5820 100644 --- a/clang/include/clang/Basic/TargetOptions.h +++ b/clang/include/clang/Basic/TargetOptions.h @@ -19,6 +19,10 @@ namespace clang { class TargetOptions { public: + TargetOptions() { + CXXABI = "itanium"; + } + /// If given, the name of the target triple to compile for. If not given the /// target will be selected to match the host. std::string Triple; -- GitLab