Pass /bigobj for SBReproducer.cpp with MSVC

/BIGOBJ is used to bypass certain COFF file format
limitations and is used with, unsurprisingly, very big
object files.  This file has grown large enough that it
needs this flag in order to compile successfully.

llvm-svn: 355559
This commit is contained in:
Zachary Turner 2019-03-06 22:42:34 +00:00
parent 83b88441ad
commit 2157f57d2d

View file

@ -97,6 +97,10 @@ add_lldb_library(liblldb SHARED
Support
)
if (MSVC)
set_source_files_properties(SBReproducer.cpp PROPERTIES COMPILE_FLAGS /bigobj)
endif()
if(lldb_python_wrapper)
add_dependencies(liblldb swig_wrapper)