mirror of
https://github.com/ziglang/zig.git
synced 2025-12-25 07:33:08 +00:00
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:
parent
c837ae1707
commit
f87f98015c
@ -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()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user