From: Simon Pilgrim Date: Mon, 17 Dec 2018 15:14:08 +0000 (+0000) Subject: Build ASTImporterTest.cpp with /bigobj on MSVC builds to keep llvm-clang-x86_64-expen... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e5939c6db50a7240bb0c3d391d7ef32e8f8b3092;p=clang 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 --- 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