From e5939c6db50a7240bb0c3d391d7ef32e8f8b3092 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Mon, 17 Dec 2018 15:14:08 +0000 Subject: [PATCH] Build ASTImporterTest.cpp with /bigobj on MSVC builds to keep llvm-clang-x86_64-expensive-checks-win buildbot happy git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@349357 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/AST/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/unittests/AST/CMakeLists.txt b/unittests/AST/CMakeLists.txt index 6621ce681b..c416e5b996 100644 --- a/unittests/AST/CMakeLists.txt +++ b/unittests/AST/CMakeLists.txt @@ -2,6 +2,10 @@ set(LLVM_LINK_COMPONENTS Support ) +if (MSVC) + set_source_files_properties(ASTImporterTest.cpp PROPERTIES COMPILE_FLAGS /bigobj) +endif() + add_clang_unittest(ASTTests ASTContextParentMapTest.cpp ASTImporterTest.cpp -- 2.40.0