forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#130417 - workingjubilee:pull-in-backtrace-wit…
…h-zstd, r=<try> Support symbolicating zstd-compressed ELF sections This requires bumping backtrace to rust-lang/backtrace-rs@4f3acf7 which includes support for symbolicating from newer Android APK formats, as well as for using zstd-compressed ELF sections for debuginfo. It also requires compiling ruzstd, a zstd decompressor written in Rust. This can combine with rust-lld's support for zstd-compressed debuginfo for overall smaller debuginfo sections.
- Loading branch information
Showing
5 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule backtrace
updated
22 files
+6 −5 | .github/workflows/check-binary-size.yml | |
+26 −9 | .github/workflows/main.yml | |
+9 −1 | Cargo.lock | |
+2 −1 | Cargo.toml | |
+2 −1 | crates/as-if-std/Cargo.toml | |
+1 −1 | src/backtrace/mod.rs | |
+4 −2 | src/capture.rs | |
+15 −17 | src/lib.rs | |
+1 −1 | src/print.rs | |
+1 −1 | src/print/fuchsia.rs | |
+39 −11 | src/symbolize/gimli.rs | |
+99 −12 | src/symbolize/gimli/elf.rs | |
+49 −23 | src/symbolize/gimli/libs_dl_iterate_phdr.rs | |
+1 −1 | src/symbolize/gimli/macho.rs | |
+4 −2 | src/symbolize/gimli/mmap_fake.rs | |
+2 −2 | src/symbolize/gimli/mmap_unix.rs | |
+8 −2 | src/symbolize/gimli/mmap_windows.rs | |
+9 −2 | src/symbolize/gimli/parse_running_mmaps_unix.rs | |
+1 −1 | src/symbolize/mod.rs | |
+3 −3 | src/types.rs | |
+4 −0 | tests/skip_inner_frames.rs | |
+8 −8 | tests/smoke.rs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters