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