diff options
| -rw-r--r-- | lldb/source/API/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/source/API/CMakeLists.txt b/lldb/source/API/CMakeLists.txt index 70908cd7e9b..94c9e338f27 100644 --- a/lldb/source/API/CMakeLists.txt +++ b/lldb/source/API/CMakeLists.txt @@ -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) |

