16MB stack size when building with msvc

fixes crash when evaluating user code that hits the branch limit

See #302
master
Andrew Kelley 2017-10-15 19:04:19 -04:00
parent c837ae1707
commit f87f98015c
1 changed files with 2 additions and 0 deletions

View File

@ -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()