forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#136992 - ehuss:update-backtrace, r=workingj…
…ubilee Update backtrace This updates the backtrace submodule. 6 commits in f8cc6ac9acc4e663ecd96f9bcf1ff4542636d1b9..9d2c34e7e63afe1e71c333b247065e3b7ba4d883 2025-01-04 03:37:47 +0100 to 2025-02-13 14:14:18 -0800 - Various cleanups: rust-lang/backtrace-rs#673 - libunwind: Use builtin _Unwind_GetIP for NuttX on ARM platform: rust-lang/backtrace-rs#692 - remove outdated docs part on Dbghelp::ensure_open: rust-lang/backtrace-rs#696 - Cleanup Windows trace modules: rust-lang/backtrace-rs#697 - Attempt to fix ARM32 Windows: rust-lang/backtrace-rs#685 - Prepare backtrace for Rust 2024: rust-lang/backtrace-rs#700
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule backtrace
updated
23 files
+1 −1 | .github/workflows/main.yml | |
+1 −1 | Cargo.toml | |
+27 −20 | src/backtrace/libunwind.rs | |
+10 −5 | src/backtrace/miri.rs | |
+7 −7 | src/backtrace/mod.rs | |
+4 −1 | src/backtrace/noop.rs | |
+1 −10 | src/backtrace/win32.rs | |
+20 −20 | src/backtrace/win64.rs | |
+0 −2 | src/dbghelp.rs | |
+2 −2 | src/print/fuchsia.rs | |
+116 −89 | src/symbolize/dbghelp.rs | |
+53 −46 | src/symbolize/gimli.rs | |
+8 −13 | src/symbolize/gimli/elf.rs | |
+13 −6 | src/symbolize/gimli/libs_aix.rs | |
+1 −1 | src/symbolize/gimli/libs_illumos.rs | |
+1 −1 | src/symbolize/gimli/libs_libnx.rs | |
+18 −15 | src/symbolize/gimli/libs_windows.rs | |
+10 −8 | src/symbolize/gimli/mmap_unix.rs | |
+29 −27 | src/symbolize/gimli/mmap_windows.rs | |
+3 −3 | src/symbolize/gimli/xcoff.rs | |
+2 −2 | src/symbolize/mod.rs | |
+4 −0 | src/windows_sys.rs | |
+53 −0 | src/windows_sys_arm32_shim.rs |