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 {...@@ -1697,7 +1697,6 @@ pub fn create(gpa: Allocator, options: InitOptions) !*Compilation {
1697 .soname = options.soname,1697 .soname = options.soname,
1698 .compatibility_version = options.compatibility_version,1698 .compatibility_version = options.compatibility_version,
1699 .dll_export_fns = dll_export_fns,1699 .dll_export_fns = dll_export_fns,
1700 .parent_compilation_link_libc = options.parent_compilation_link_libc,
1701 .each_lib_rpath = each_lib_rpath,1700 .each_lib_rpath = each_lib_rpath,
1702 .build_id = build_id,1701 .build_id = build_id,
1703 .disable_lld_caching = options.disable_lld_caching or cache_mode == .whole,1702 .disable_lld_caching = options.disable_lld_caching or cache_mode == .whole,
...@@ -6191,6 +6190,7 @@ fn buildOutputFromZig(...@@ -6191,6 +6190,7 @@ fn buildOutputFromZig(
6191 .omit_frame_pointer = comp.root_mod.omit_frame_pointer,6190 .omit_frame_pointer = comp.root_mod.omit_frame_pointer,
6192 .unwind_tables = comp.bin_file.options.eh_frame_hdr,6191 .unwind_tables = comp.bin_file.options.eh_frame_hdr,
6193 .pic = comp.root_mod.pic,6192 .pic = comp.root_mod.pic,
6193 .optimize_mode = comp.compilerRtOptMode(),
6194 },6194 },
6195 .global = config,6195 .global = config,
6196 .cc_argv = &.{},6196 .cc_argv = &.{},
src/link.zig-1
...@@ -133,7 +133,6 @@ pub const File = struct {...@@ -133,7 +133,6 @@ pub const File = struct {
133 export_symbol_names: []const []const u8,133 export_symbol_names: []const []const u8,
134 global_base: ?u64,134 global_base: ?u64,
135 dll_export_fns: bool,135 dll_export_fns: bool,
136 parent_compilation_link_libc: bool,
137 each_lib_rpath: bool,136 each_lib_rpath: bool,
138 build_id: std.zig.BuildId,137 build_id: std.zig.BuildId,
139 disable_lld_caching: bool,138 disable_lld_caching: bool,