projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ee15d3d
)
Compile CodeGenModule.cpp with /bigobj.
author
Peter Collingbourne
<peter@pcc.me.uk>
Tue, 26 Jun 2018 17:45:26 +0000
(17:45 +0000)
committer
Peter Collingbourne
<peter@pcc.me.uk>
Tue, 26 Jun 2018 17:45:26 +0000
(17:45 +0000)
Apparently we're now hitting an object file section limit on this
file with expensive checks enabled.
llvm-svn: 335636
clang/lib/CodeGen/CMakeLists.txt
patch
|
blob
|
history
diff --git
a/clang/lib/CodeGen/CMakeLists.txt
b/clang/lib/CodeGen/CMakeLists.txt
index
29e5496
..
2a0f4f0
100644
(file)
--- a/
clang/lib/CodeGen/CMakeLists.txt
+++ b/
clang/lib/CodeGen/CMakeLists.txt
@@
-32,6
+32,10
@@
if (CLANG_BUILT_STANDALONE)
set(codegen_deps)
endif()
+if (MSVC)
+ set_source_files_properties(CodeGenModule.cpp PROPERTIES COMPILE_FLAGS /bigobj)
+endif()
+
add_clang_library(clangCodeGen
BackendUtil.cpp
CGAtomic.cpp