Skip to content

Commit 13d559b

Browse files
authored
Update our build script to publish Mac aarch_64 binaries (#9203)
These are still x86-64 binaries at the moment (see #8557), but should be usable on M1 Macs in the Rosetta compatibility mode. Let's start publishing them on our GitHub release page and then eventually we can make them into true aarch_64 binaries. This fixes #9200.
1 parent 3a4d931 commit 13d559b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

protoc-artifacts/build-zip.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ release page. If the target is protoc, well-known type .proto files will also be
1616
included. Each invocation will create 8 zip packages:
1717
dist/<TARGET>-<VERSION_NUMBER>-win32.zip
1818
dist/<TARGET>-<VERSION_NUMBER>-win64.zip
19+
dist/<TARGET>-<VERSION_NUMBER>-osx-aarch_64.zip
1920
dist/<TARGET>-<VERSION_NUMBER>-osx-x86_64.zip
2021
dist/<TARGET>-<VERSION_NUMBER>-linux-x86_32.zip
2122
dist/<TARGET>-<VERSION_NUMBER>-linux-x86_64.zip
@@ -33,6 +34,7 @@ VERSION_NUMBER=$2
3334
declare -a FILE_NAMES=( \
3435
win32.zip windows-x86_32.exe \
3536
win64.zip windows-x86_64.exe \
37+
osx-aarch_64.zip osx-aarch_64.exe \
3638
osx-x86_64.zip osx-x86_64.exe \
3739
linux-x86_32.zip linux-x86_32.exe \
3840
linux-x86_64.zip linux-x86_64.exe \

0 commit comments

Comments
 (0)