Skip to content

Commit 8736a5b

Browse files
nrdmnandrewrk
authored andcommitted
std/build.zig: fix stack checking option
1 parent 7e43600 commit 8736a5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

std/build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1802,7 +1802,7 @@ pub const LibExeObjStep = struct {
18021802
try zig_args.append("--bundle-compiler-rt");
18031803
}
18041804
if (self.disable_stack_probing) {
1805-
try zig_args.append("--disable-stack-probing");
1805+
try zig_args.append("-fno-stack-check");
18061806
}
18071807

18081808
switch (self.target) {

0 commit comments

Comments
 (0)