Skip to content

Commit

Permalink
Add support for Linux powerpc64le. (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois authored Dec 13, 2024
1 parent d245f6b commit c9dc92a
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ jobs:
- os: ubuntu-24.04
name: Linux s390x
cross-target: s390x-unknown-linux-gnu
- os: ubuntu-24.04
name: Linux powerpc64le
cross-target: powerpc64le-unknown-linux-gnu
- os: macos-13
name: macOS x86-64
- os: macos-14
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ jobs:
- os: ubuntu-24.04
name: Linux armv7l
cross-target: armv7-unknown-linux-musleabihf
- os: ubuntu-24.04
name: Linux powerpc64le
cross-target: powerpc64le-unknown-linux-gnu
- os: ubuntu-24.04
name: Linux s390x
cross-target: s390x-unknown-linux-gnu
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 1.5.0

This release adds support for Linux powerpc64le.

## 1.4.0

This release adds support for Linux s390x.
Expand Down
12 changes: 1 addition & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = [

[package]
name = "ptex"
version = "1.4.0"
version = "1.5.0"
edition = "2021"
authors = [
"John Sirois <john.sirois@gmail.com>",
Expand Down Expand Up @@ -35,7 +35,6 @@ features = [
"ssl",
"static-curl",
"static-ssl",
"zlib-ng-compat"
]

[dev-dependencies]
Expand Down
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,10 @@ distribution is ~28M:
## Building `ptex`

The `ptex` binary is [released](https://github.com/a-scie/ptex/releases) for Linux (x86_64,
aarch64, armv7l & s390x), macOS (x86_64 & aarch64) and Windows (x86_64 & aarch64). If you'd like tox
build your own copy, you'll need [Rust installed](https://rustup.rs/) at which point you can run
`cargo run -p package` and a binary for your current machine will be built in `dist/` along with a
sha256 checksum file. For more build options, you can run `cargo run -p package -- --help`. On some
systems, builds will require `cmake`, `make` and `perl` in order to build various `*-sys` crates.
If you're missing these, the build failures will point you in the right direction with some reading.
aarch64, armv7l, s390x & powerpc64le), macOS (x86_64 & aarch64) and Windows (x86_64 & aarch64). If
you'd like to build your own copy, you'll need [Rust installed](https://rustup.rs/) at which point
you can run `cargo run -p package` and a binary for your current machine will be built in `dist/`
along with a sha256 checksum file. For more build options, you can run
`cargo run -p package -- --help`. On some systems, builds will require `cmake`, `make` and `perl`
in order to build various `*-sys` crates. If you're missing these, the build failures will point
you in the right direction with some reading.

0 comments on commit c9dc92a

Please sign in to comment.