mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-07 22:34:28 +00:00
std/build.zig: fix stack checking option
This commit is contained in:
parent
7e436006be
commit
8736a5be2a
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue