zig

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

commit 088f815031dd3570c9cc179e193cbd545e5bb3a3 (tree)
parent a399d37886bfb8358e2f93744f0dd3f59542dcee
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Sat, 18 Apr 2026 22:19:48 -0700

there are some unresolved branch conflicts

Diffstat:
MBRANCH_TODO | 28++++++++++++++++++++++++++++
1 file changed, 28 insertions(+), 0 deletions(-)

diff --git a/BRANCH_TODO b/BRANCH_TODO @@ -21,3 +21,31 @@ - but artifact install steps also add paths for dyn libs on windows + +## Unresolved Branch Conflicts + +* move max_jobs to maker not configurer + ++// hack for stage2_x86_64 + coff ++generated_compiler_rt_dyn_lib: ?*GeneratedFile, + ++ // hack for stage2_x86_64 + coff ++ if (compile.generated_compiler_rt_dyn_lib) |lp| lp.path = compile.outputPath(output_dir, .compiler_rt_dyn_lib); + + if (install_artifact.compiler_rt_dyn_lib_dir) |compiler_rt_dir| { + const full_compiler_rt_path = b.getInstallPath(compiler_rt_dir, install_artifact.emitted_compiler_rt_dyn_lib.?.basename(b, step)); + const p = try step.installFile(install_artifact.emitted_compiler_rt_dyn_lib.?, full_compiler_rt_path); + all_cached = all_cached and p == .fresh; + } + + + .compiler_rt_dyn_lib_dir = switch (options.compiler_rt_dyn_lib_dir) { + .disabled => null, + .default => if (artifact.producesCompilerRtDynLib()) dest_dir else null, + .override => |o| o, + }, + + if (install_artifact.compiler_rt_dyn_lib_dir != null) install_artifact.emitted_compiler_rt_dyn_lib = artifact.getEmittedCompilerRtDynLib(); + + +