diff options
| author | kcbanner <kcbanner@gmail.com> | 2023-07-23 14:07:14 -0400 |
|---|---|---|
| committer | kcbanner <kcbanner@gmail.com> | 2023-07-26 20:58:29 -0400 |
| commit | f2aab12a8627b3afd1a4d9c38157968b2f012e0c (patch) | |
| tree | 6fe3ccb998db142ed7a2274e467d3d7c2ddb0cc7 /src/Compilation.zig | |
| parent | a84826115fa06b8f2da2b3cf0f182c4b75706e2c (diff) | |
| download | zig-f2aab12a8627b3afd1a4d9c38157968b2f012e0c.tar.gz zig-f2aab12a8627b3afd1a4d9c38157968b2f012e0c.zip | |
compilation: change compiler_rt to inherit `strip` and `want_unwind_tables` from the parent compilation
Diffstat (limited to 'src/Compilation.zig')
| -rw-r--r-- | src/Compilation.zig | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig index 4019e43c8d..2e269a7e80 100644 --- a/src/Compilation.zig +++ b/src/Compilation.zig @@ -5491,6 +5491,7 @@ fn buildOutputFromZig( .omit_frame_pointer = comp.bin_file.options.omit_frame_pointer, .want_valgrind = false, .want_tsan = false, + .want_unwind_tables = comp.bin_file.options.eh_frame_hdr, .want_pic = comp.bin_file.options.pic, .want_pie = comp.bin_file.options.pie, .emit_h = null, @@ -5639,9 +5640,5 @@ pub fn compilerRtOptMode(comp: Compilation) std.builtin.Mode { /// This decides whether to strip debug info for all zig-provided libraries, including /// compiler-rt, libcxx, libc, libunwind, etc. pub fn compilerRtStrip(comp: Compilation) bool { - if (comp.debug_compiler_runtime_libs) { - return comp.bin_file.options.strip; - } else { - return true; - } + return comp.bin_file.options.strip; } |
