diff options
| author | Aaron Ballman <aaron@aaronballman.com> | 2016-06-01 15:17:54 +0000 |
|---|---|---|
| committer | Aaron Ballman <aaron@aaronballman.com> | 2016-06-01 15:17:54 +0000 |
| commit | 256845036d0cf816a0a644f14e0a0513be25c931 (patch) | |
| tree | e690b054b4b0c0fe7ef1c6c205958ba59d72a5cd /clang | |
| parent | 6170c15fc68dc8fc29ea8190c3e94028497b02d1 (diff) | |
| download | bcm5719-llvm-256845036d0cf816a0a644f14e0a0513be25c931.tar.gz bcm5719-llvm-256845036d0cf816a0a644f14e0a0513be25c931.zip | |
It seems we need to add SemaExpr.cpp to the /bigobj list; I am getting consistent failures of hitting the section count limit.
llvm-svn: 271399
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/lib/Sema/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/lib/Sema/CMakeLists.txt b/clang/lib/Sema/CMakeLists.txt index 8aa005102fe..7a5973299f9 100644 --- a/clang/lib/Sema/CMakeLists.txt +++ b/clang/lib/Sema/CMakeLists.txt @@ -2,6 +2,10 @@ set(LLVM_LINK_COMPONENTS Support ) +if (MSVC) + set_source_files_properties(SemaExpr.cpp PROPERTIES COMPILE_FLAGS /bigobj) +endif() + add_clang_library(clangSema AnalysisBasedWarnings.cpp AttributeList.cpp |

