mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-12 17:19:05 -05:00
cmake: Reduce default recursion depth when compiling with IntelLLVM
This compiler makes stack frames large enough (at least in Debug builds) that CMake language recursion to depth 1000 overflows the stack. Reduce the limit for this compiler.
This commit is contained in:
@@ -46,6 +46,8 @@ if(NOT CMake_DEFAULT_RECURSION_LIMIT)
|
||||
set(CMake_DEFAULT_RECURSION_LIMIT 100)
|
||||
elseif(MINGW)
|
||||
set(CMake_DEFAULT_RECURSION_LIMIT 400)
|
||||
elseif(WIN32 AND CMAKE_C_COMPILER_ID STREQUAL "IntelLLVM")
|
||||
set(CMake_DEFAULT_RECURSION_LIMIT 600)
|
||||
else()
|
||||
set(CMake_DEFAULT_RECURSION_LIMIT 1000)
|
||||
endif()
|
||||
|
||||
Reference in New Issue
Block a user