-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
std: Update the backtrace crate submodule
This commit updates the `library/backtrace` submodule which primarily pulls in support for split-debuginfo on macOS, avoiding the need for `dsymutil` to get run to get line numbers and filenames in backtraces.
- Loading branch information
1 parent
c9c57fa
commit f99410b
Showing
3 changed files
with
14 additions
and
20 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
Submodule backtrace
updated
24 files
+17 −6 | .github/workflows/main.yml | |
+4 −4 | Cargo.toml | |
+0 −9 | ci/android-sdk.sh | |
+17 −0 | ci/docker/s390x-unknown-linux-gnu/Dockerfile | |
+1 −0 | ci/run-docker.sh | |
+3 −3 | crates/as-if-std/Cargo.toml | |
+0 −1 | crates/cpp_smoke_test/tests/smoke.rs | |
+2 −0 | crates/dylib-dep/src/lib.rs | |
+0 −10 | src/backtrace/dbghelp.rs | |
+13 −11 | src/backtrace/libunwind.rs | |
+1 −0 | src/backtrace/mod.rs | |
+3 −5 | src/capture.rs | |
+4 −2 | src/lib.rs | |
+2 −2 | src/print.rs | |
+2 −10 | src/symbolize/dbghelp.rs | |
+68 −48 | src/symbolize/gimli.rs | |
+7 −5 | src/symbolize/gimli/coff.rs | |
+6 −4 | src/symbolize/gimli/elf.rs | |
+145 −28 | src/symbolize/gimli/macho.rs | |
+2 −10 | src/symbolize/libbacktrace.rs | |
+2 −0 | src/symbolize/miri.rs | |
+11 −22 | src/symbolize/mod.rs | |
+2 −0 | src/symbolize/noop.rs | |
+6 −1 | tests/concurrent-panics.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