Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added protoc v3.15.8 binary for s390x and ppcle64 arch #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 2 additions & 0 deletions prost-build/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ fn bundled_protoc() -> Option<PathBuf> {
let protoc_bin_name = match (env::consts::OS, env::consts::ARCH) {
("linux", "x86") => "protoc-linux-x86_32",
("linux", "x86_64") => "protoc-linux-x86_64",
("linux", "s390x") => "protoc-linux-s390x",
("linux", "powerpc64le") => "protoc-linux-ppcle_64",
("linux", "aarch64") => "protoc-linux-aarch_64",
("macos", "x86_64") => "protoc-osx-x86_64",
("macos", "aarch64") => "protoc-osx-x86_64", // will be translated to aarch64 by Rosetta
Expand Down
Binary file not shown.
Binary file not shown.
2 changes: 2 additions & 0 deletions prost-build/third-party/update-bundled-protobuf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ ARCHS=( \
"linux-aarch_64" \
"linux-x86_32" \
"linux-x86_64" \
"linux-s390x" \
"linux-ppcle_64" \
"osx-x86_64" \
"win32" \
)
Expand Down