fix: use no_builtin when including zigc in the Zcu

* oops
This commit is contained in:
GasInfinity
2026-03-22 14:03:50 +01:00
committed by Alex Rønne Petersen
parent 9857dabfea
commit 1311880eea
+5 -1
View File
@@ -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) {