Skip to content

Commit 848e8ee

Browse files
committed
remove window specific stack size
1 parent 832f131 commit 848e8ee

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

build.zig

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -145,9 +145,6 @@ pub fn build(b: *std.Build) void {
145145
addStdLib(libquickjs, cflags, csrc);
146146
}
147147
portableLinkLibC(libquickjs);
148-
if (target.result.os.tag == .windows) {
149-
libquickjs.stack_size = 8388608;
150-
}
151148
b.installArtifact(libquickjs);
152149

153150
const qjsc = b.addExecutable(.{
@@ -177,10 +174,6 @@ pub fn build(b: *std.Build) void {
177174
}),
178175
});
179176

180-
if (b.graph.host.result.os.tag == .windows) {
181-
qjsc_host.stack_size = 8388608;
182-
}
183-
184177
portableAddCSourceFiles(qjsc_host, .{
185178
.files = &.{"qjsc.c"},
186179
.flags = cflags,

0 commit comments

Comments
 (0)