mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
fix: use no_builtin when including zigc in the Zcu
* oops
This commit is contained in:
committed by
Alex Rønne Petersen
parent
9857dabfea
commit
1311880eea
+5
-1
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user