| author | |
| committer | |
| log | 7b1d2fa004ef8b1f59ff0b54327f47bb98e18563 |
| tree | 761955a8c2aac3be83ab9105afbf4e13771f66b5 |
| parent | b57819118ddf287a135b4c2fb7182615b402fbc2 |
| signature |
Closes #21831.1 files changed, 5 insertions(+), 1 deletions(-)
src/Compilation.zig+5-1| ... | ... | @@ -1298,7 +1298,11 @@ pub fn create(gpa: Allocator, arena: Allocator, options: CreateOptions) !*Compil |
| 1298 | 1298 | }, |
| 1299 | 1299 | .fully_qualified_name = "compiler_rt", |
| 1300 | 1300 | .cc_argv = &.{}, |
| 1301 | .inherited = .{}, | |
| 1301 | .inherited = .{ | |
| 1302 | .stack_check = false, | |
| 1303 | .stack_protector = 0, | |
| 1304 | .no_builtin = true, | |
| 1305 | }, | |
| 1302 | 1306 | .global = options.config, |
| 1303 | 1307 | .parent = options.root_mod, |
| 1304 | 1308 | .builtin_mod = options.root_mod.getBuiltinDependency(), |