Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
i686-pc-windows-gnu,
i686-pc-windows-msvc,
loongarch64-unknown-linux-gnu,
powerpc64le-unknown-linux-gnu,
]
channel: [stable, nightly]
include:
Expand Down Expand Up @@ -79,3 +80,9 @@ jobs:
os: windows-latest
- target: loongarch64-unknown-linux-gnu
os: ubuntu-latest
- target: powerpc64le-unknown-linux-gnu
os: ubuntu-latest
exclude:
# PowerPC inline asm is still unstable
- target: powerpc64le-unknown-linux-gnu
channel: stable
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ This crate currently supports the following targets:
| ARM | ✅ | ❌ | ❌ |
| RISC-V | ✅ | ❌ | ❌ |
| LoongArch64 | ✅ | ❌ | ❌ |
| PowerPC64 | ✅ | ❌ | ❌ |

\* Linked backtraces are not supported on x86 Windows.

Expand Down
3 changes: 3 additions & 0 deletions src/arch/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,9 @@ cfg_if::cfg_if! {
} else if #[cfg(all(target_arch = "loongarch64", not(windows)))] {
mod loongarch64;
pub use self::loongarch64::*;
} else if #[cfg(all(target_arch = "powerpc64", target_abi = "elfv2", not(windows)))] {
mod powerpc64;
pub use self::powerpc64::*;
} else {
compile_error!("Unsupported target");
}
Expand Down
Loading
Loading