Skip to content
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