Skip to content

Commit 7fa0c00

Browse files
committed
try adding stack size flag
1 parent 3060352 commit 7fa0c00

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

contrib/julia-config.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,11 @@ function initDir()
5151
end
5252

5353
function ldflags()
54-
replace("""-L$(libDir())""","\\","\\\\")
54+
fl = replace("""-L$(libDir())""","\\","\\\\")
55+
if is_windows()
56+
fl = fl * " -Wl,--stack,8388608"
57+
end
58+
return fl
5559
end
5660

5761
function ldlibs()

0 commit comments

Comments
 (0)