16MB stack size when building with msvc
fixes crash when evaluating user code that hits the branch limit See #302
This commit is contained in:
@@ -375,6 +375,8 @@ endif()
|
||||
set(EXE_LDFLAGS " ")
|
||||
if(MINGW)
|
||||
set(EXE_LDFLAGS "-static -static-libgcc -static-libstdc++")
|
||||
elseif(MSVC)
|
||||
set(EXE_LDFLAGS "/STACK:16777216")
|
||||
else()
|
||||
set(EXE_LDFLAGS " ")
|
||||
endif()
|
||||
|
||||
Reference in New Issue
Block a user