Skip to content

Commit

Permalink
fix: correct ppc64le arch (#2540)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv authored Nov 26, 2024
1 parent 456a888 commit c0040f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/trampoline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
target: aarch64-unknown-linux-musl
os: ubuntu-latest

- name: "Linux-powerpc64"
target: powerpc64-unknown-linux-gnu
- name: "Linux-powerpc64le"
target: powerpc64le-unknown-linux-gnu
os: ubuntu-latest

- name: "macOS-x86"
Expand Down
1 change: 1 addition & 0 deletions src/global/trampoline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ const TRAMPOLINE_BIN: &[u8] = include_bytes!(
);

#[cfg(target_arch = "powerpc64")]
#[cfg(target_endian = "little")]
#[cfg(target_os = "linux")]
const TRAMPOLINE_BIN: &[u8] = include_bytes!(
"../../crates/pixi_trampoline/trampolines/pixi-trampoline-powerpc64le-unknown-linux-gnu.zst"
Expand Down

0 comments on commit c0040f5

Please sign in to comment.