-
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.
Auto merge of #129642 - workingjubilee:bump-backtrace-fc37b22, r=<try>
Bump backtrace to rust-lang/backtrace-rs@fc37b22 It should be 0.3.74~ish. This should help with backtraces on Android, QNX NTO 7.0, and Windows. try-job: arm-android
- Loading branch information
Showing
8 changed files
with
25 additions
and
6 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
30 files
+167 −169 | .github/workflows/main.yml | |
+123 −31 | Cargo.lock | |
+3 −26 | Cargo.toml | |
+63 −0 | bindings.txt | |
+0 −55 | build.rs | |
+2 −2 | ci/android-ndk.sh | |
+1 −1 | ci/docker/arm-linux-androideabi/Dockerfile | |
+1 −1 | ci/docker/armv7-linux-androideabi/Dockerfile | |
+1 −1 | ci/docker/i686-linux-android/Dockerfile | |
+4 −4 | crates/as-if-std/Cargo.toml | |
+0 −8 | crates/as-if-std/build.rs | |
+1 −0 | crates/cpp_smoke_test/Cargo.toml | |
+8 −8 | src/backtrace/dbghelp32.rs | |
+11 −11 | src/backtrace/dbghelp64.rs | |
+0 −1 | src/backtrace/mod.rs | |
+110 −15 | src/capture.rs | |
+71 −129 | src/dbghelp.rs | |
+2 −1 | src/lib.rs | |
+2 −3 | src/print.rs | |
+10 −10 | src/symbolize/dbghelp.rs | |
+7 −8 | src/symbolize/gimli.rs | |
+2 −2 | src/symbolize/gimli/libs_windows.rs | |
+7 −5 | src/symbolize/gimli/mmap_windows.rs | |
+2 −2 | src/symbolize/mod.rs | |
+0 −749 | src/windows.rs | |
+893 −0 | src/windows_sys.rs | |
+3 −3 | tests/concurrent-panics.rs | |
+10 −0 | tests/current-exe-mismatch.rs | |
+8 −5 | tests/skip_inner_frames.rs | |
+21 −19 | 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
thread 'main' panicked at core/src/panicking.rs:$LINE:$COL: | ||
thread 'main' panicked at $DIR/extern-types-field-offset.rs:1:1: | ||
attempted to compute the size or alignment of extern type `Opaque` | ||
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace | ||
thread caused non-unwinding panic. aborting. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
thread 'main' panicked at core/src/panicking.rs:$LINE:$COL: | ||
thread 'main' panicked at $DIR/extern-types-size_of_val.rs:1:1: | ||
attempted to compute the size or alignment of extern type `A` | ||
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace | ||
thread caused non-unwinding panic. aborting. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
thread 'main' panicked at core/src/panicking.rs:$LINE:$COL: | ||
thread 'main' panicked at $DIR/extern-types-size_of_val.rs:1:1: | ||
attempted to compute the size or alignment of extern type `A` | ||
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace | ||
thread caused non-unwinding panic. aborting. |