Add back unwinding support for Sony PSP
This commit is contained in:
parent
4d4342347b
commit
27fca58993
2 changed files with 2 additions and 2 deletions
|
@ -50,6 +50,7 @@ cfg_if::cfg_if! {
|
|||
} else if #[cfg(any(
|
||||
all(target_family = "windows", target_env = "gnu"),
|
||||
target_os = "cloudabi",
|
||||
target_os = "psp",
|
||||
target_family = "unix",
|
||||
all(target_vendor = "fortanix", target_env = "sgx"),
|
||||
))] {
|
||||
|
@ -65,7 +66,6 @@ cfg_if::cfg_if! {
|
|||
// - os=uefi
|
||||
// - nvptx64-nvidia-cuda
|
||||
// - avr-unknown-unknown
|
||||
// - mipsel-sony-psp
|
||||
#[path = "dummy.rs"]
|
||||
mod real_imp;
|
||||
}
|
||||
|
|
|
@ -19,6 +19,7 @@ cfg_if::cfg_if! {
|
|||
} else if #[cfg(any(
|
||||
unix,
|
||||
windows,
|
||||
target_os = "psp",
|
||||
target_os = "cloudabi",
|
||||
all(target_vendor = "fortanix", target_env = "sgx"),
|
||||
))] {
|
||||
|
@ -32,7 +33,6 @@ cfg_if::cfg_if! {
|
|||
// - os=uefi
|
||||
// - os=cuda
|
||||
// - nvptx64-nvidia-cuda
|
||||
// - mipsel-sony-psp
|
||||
// - Any new targets not listed above.
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue