zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 1311880eea5e80b5a50eb6360d183b21ec66f0c7 (tree)
parent 9857dabfea5373b84b66454093fd590771a4716f
Author: GasInfinity <me@gasinfinity.dev>
Date:   Sun, 22 Mar 2026 14:03:50 +0100

fix: use no_builtin when including zigc in the Zcu

* oops

Diffstat:
Msrc/Compilation.zig | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/Compilation.zig b/src/Compilation.zig @@ -2050,7 +2050,11 @@ pub fn create(gpa: Allocator, arena: Allocator, io: Io, diag: *CreateDiagnostic, }, .fully_qualified_name = "zigc", .cc_argv = &.{}, - .inherited = .{}, + .inherited = .{ + .stack_check = false, + .stack_protector = 0, + .no_builtin = true, + }, .global = options.config, .parent = options.root_mod, }) catch |err| switch (err) {