We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9c4658 commit d8f1ce8Copy full SHA for d8f1ce8
src/backtrace/libunwind.rs
@@ -182,6 +182,7 @@ mod uw {
182
not(all(target_os = "freebsd", target_arch = "arm")),
183
not(all(target_os = "linux", target_arch = "arm")),
184
not(all(target_os = "horizon", target_arch = "arm")),
185
+ not(all(target_os = "rtems", target_arch = "arm")),
186
not(all(target_os = "vita", target_arch = "arm")),
187
))] {
188
extern "C" {
src/backtrace/mod.rs
@@ -174,7 +174,7 @@ cfg_if::cfg_if! {
174
any(
175
all(
176
unix,
177
- not(any(target_os = "emscripten", target_os = "rtems")),
+ not(target_os = "emscripten"),
178
not(all(target_os = "ios", target_arch = "arm")),
179
),
180
0 commit comments