| ... | ... | @@ -6155,7 +6155,6 @@ fn buildOutputFromZig( |
| 6155 | 6155 | |
| 6156 | 6156 | assert(output_mode != .Exe); |
| 6157 | 6157 | |
| 6158 | | const unwind_tables = comp.link_eh_frame_hdr; |
| 6159 | 6158 | const strip = comp.compilerRtStrip(); |
| 6160 | 6159 | const optimize_mode = comp.compilerRtOptMode(); |
| 6161 | 6160 | |
| ... | ... | @@ -6169,7 +6168,6 @@ fn buildOutputFromZig( |
| 6169 | 6168 | .root_optimize_mode = optimize_mode, |
| 6170 | 6169 | .root_strip = strip, |
| 6171 | 6170 | .link_libc = comp.config.link_libc, |
| 6172 | | .any_unwind_tables = unwind_tables, |
| 6173 | 6171 | }); |
| 6174 | 6172 | |
| 6175 | 6173 | const root_mod = try Package.Module.create(arena, .{ |
| ... | ... | @@ -6186,7 +6184,7 @@ fn buildOutputFromZig( |
| 6186 | 6184 | .stack_protector = 0, |
| 6187 | 6185 | .red_zone = comp.root_mod.red_zone, |
| 6188 | 6186 | .omit_frame_pointer = comp.root_mod.omit_frame_pointer, |
| 6189 | | .unwind_tables = unwind_tables, |
| 6187 | .unwind_tables = comp.root_mod.unwind_tables, |
| 6190 | 6188 | .pic = comp.root_mod.pic, |
| 6191 | 6189 | .optimize_mode = optimize_mode, |
| 6192 | 6190 | .structured_cfg = comp.root_mod.structured_cfg, |