authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-12-13 12:33:37-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-01-01 17:51:19-07:00
log41a8f5aec34ad4d6e4f5c4a2a2dc47f10bb1311d
treead5594e3193bf88b3c5eec88d7c92111e4d53255
parent0789e91eeb08495c5084067df2b2dab410197364

remove parent_compilation_link_libc


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

src/Compilation.zig+1-1
......@@ -1697,7 +1697,6 @@ pub fn create(gpa: Allocator, options: InitOptions) !*Compilation {
16971697 .soname = options.soname,
16981698 .compatibility_version = options.compatibility_version,
16991699 .dll_export_fns = dll_export_fns,
1700 .parent_compilation_link_libc = options.parent_compilation_link_libc,
17011700 .each_lib_rpath = each_lib_rpath,
17021701 .build_id = build_id,
17031702 .disable_lld_caching = options.disable_lld_caching or cache_mode == .whole,
......@@ -6191,6 +6190,7 @@ fn buildOutputFromZig(
61916190 .omit_frame_pointer = comp.root_mod.omit_frame_pointer,
61926191 .unwind_tables = comp.bin_file.options.eh_frame_hdr,
61936192 .pic = comp.root_mod.pic,
6193 .optimize_mode = comp.compilerRtOptMode(),
61946194 },
61956195 .global = config,
61966196 .cc_argv = &.{},
src/link.zig-1
......@@ -133,7 +133,6 @@ pub const File = struct {
133133 export_symbol_names: []const []const u8,
134134 global_base: ?u64,
135135 dll_export_fns: bool,
136 parent_compilation_link_libc: bool,
137136 each_lib_rpath: bool,
138137 build_id: std.zig.BuildId,
139138 disable_lld_caching: bool,