authorgravatar for me@gasinfinity.devGasInfinity <me@gasinfinity.dev> 2026-03-22 14:03:50+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-03-22 21:11:41+01:00
log1311880eea5e80b5a50eb6360d183b21ec66f0c7
treed456ffff57b3678e2de58877e7f394cc46694d1f
parent9857dabfea5373b84b66454093fd590771a4716f

fix: use no_builtin when including zigc in the Zcu

* oops

1 files changed, 5 insertions(+), 1 deletions(-)

src/Compilation.zig+5-1
...@@ -2050,7 +2050,11 @@ pub fn create(gpa: Allocator, arena: Allocator, io: Io, diag: *CreateDiagnostic,...@@ -2050,7 +2050,11 @@ pub fn create(gpa: Allocator, arena: Allocator, io: Io, diag: *CreateDiagnostic,
2050 },2050 },
2051 .fully_qualified_name = "zigc",2051 .fully_qualified_name = "zigc",
2052 .cc_argv = &.{},2052 .cc_argv = &.{},
2053 .inherited = .{},2053 .inherited = .{
2054 .stack_check = false,
2055 .stack_protector = 0,
2056 .no_builtin = true,
2057 },
2054 .global = options.config,2058 .global = options.config,
2055 .parent = options.root_mod,2059 .parent = options.root_mod,
2056 }) catch |err| switch (err) {2060 }) catch |err| switch (err) {