| ... | ... | @@ -5491,6 +5491,7 @@ fn buildOutputFromZig( |
| 5491 | 5491 | .omit_frame_pointer = comp.bin_file.options.omit_frame_pointer, |
| 5492 | 5492 | .want_valgrind = false, |
| 5493 | 5493 | .want_tsan = false, |
| 5494 | .want_unwind_tables = comp.bin_file.options.eh_frame_hdr, |
| 5494 | 5495 | .want_pic = comp.bin_file.options.pic, |
| 5495 | 5496 | .want_pie = comp.bin_file.options.pie, |
| 5496 | 5497 | .emit_h = null, |
| ... | ... | @@ -5639,9 +5640,5 @@ pub fn compilerRtOptMode(comp: Compilation) std.builtin.Mode { |
| 5639 | 5640 | /// This decides whether to strip debug info for all zig-provided libraries, including |
| 5640 | 5641 | /// compiler-rt, libcxx, libc, libunwind, etc. |
| 5641 | 5642 | pub fn compilerRtStrip(comp: Compilation) bool { |
| 5642 | | if (comp.debug_compiler_runtime_libs) { |
| 5643 | | return comp.bin_file.options.strip; |
| 5644 | | } else { |
| 5645 | | return true; |
| 5646 | | } |
| 5643 | return comp.bin_file.options.strip; |
| 5647 | 5644 | } |