std/build.zig: fix stack checking option

This commit is contained in:
Nick Erdmann 2019-07-26 15:01:49 +02:00 committed by Andrew Kelley
parent 7e436006be
commit 8736a5be2a

View File

@ -1802,7 +1802,7 @@ pub const LibExeObjStep = struct {
try zig_args.append("--bundle-compiler-rt");
}
if (self.disable_stack_probing) {
try zig_args.append("--disable-stack-probing");
try zig_args.append("-fno-stack-check");
}
switch (self.target) {