Skip to content

Commit 4d7906b

Browse files
authored
Enable libunwind for rtems (#682)
In order to switch the RTEMS port to `panic_unwind` these changes need to be added in `backtrace_rs`. Once this is merged and the submodule updated in rustc I will add another PR there to make the switch.
1 parent a9c4658 commit 4d7906b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/backtrace/libunwind.rs

+1
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ mod uw {
182182
not(all(target_os = "freebsd", target_arch = "arm")),
183183
not(all(target_os = "linux", target_arch = "arm")),
184184
not(all(target_os = "horizon", target_arch = "arm")),
185+
not(all(target_os = "rtems", target_arch = "arm")),
185186
not(all(target_os = "vita", target_arch = "arm")),
186187
))] {
187188
extern "C" {

src/backtrace/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ cfg_if::cfg_if! {
174174
any(
175175
all(
176176
unix,
177-
not(any(target_os = "emscripten", target_os = "rtems")),
177+
not(target_os = "emscripten"),
178178
not(all(target_os = "ios", target_arch = "arm")),
179179
),
180180
all(

0 commit comments

Comments
 (0)