https://github.com/Kitware/CMake
Revision c7cee1a11e1c18b48d026dfae9fc8a9ddcfa238f authored by Brad King on 30 January 2018, 19:37:23 UTC, committed by Brad King on 30 January 2018, 19:40:40 UTC
Deep regex matching logic can exceed the default 1MB stack size.  Until
a better regex engine is used, simply push the problem over a farther
horizon by increasing the stack size when built using a MSVC-compatible
linker.

Issue: #17659
1 parent 1429382
Raw File
Tip revision: c7cee1a11e1c18b48d026dfae9fc8a9ddcfa238f authored by Brad King on 30 January 2018, 19:37:23 UTC
Windows: Increase stack size used by CMake binaries
Tip revision: c7cee1a
.clang-format
---
# This configuration requires clang-format 3.8 or higher.
BasedOnStyle: Mozilla
AlignOperands: false
AlwaysBreakAfterReturnType: None
AlwaysBreakAfterDefinitionReturnType: None
ColumnLimit: 79
...
back to top