File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 20
20
<file src =" protoc/windows_x64/protoc.exe" target =" tools/windows_x64/protoc.exe" />
21
21
<file src =" protoc/linux_x86/protoc" target =" tools/linux_x86/protoc" />
22
22
<file src =" protoc/linux_x64/protoc" target =" tools/linux_x64/protoc" />
23
+ <file src =" protoc/linux_aarch64/protoc" target =" tools/linux_aarch64/protoc" />
23
24
<file src =" protoc/macosx_x64/protoc" target =" tools/macosx_x64/protoc" />
24
25
<file src =" src/google/protobuf/any.proto" target =" tools/google/protobuf" />
25
26
<file src =" src/google/protobuf/api.proto" target =" tools/google/protobuf" />
Original file line number Diff line number Diff line change 3
3
<protoc_tools >$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)/../tools/'))</protoc_tools >
4
4
<protoc_linux64 >$([System.IO.Path]::GetFullPath('$(protoc_tools)/linux_x64/protoc'))</protoc_linux64 >
5
5
<protoc_linux86 >$([System.IO.Path]::GetFullPath('$(protoc_tools)/linux_x86/protoc'))</protoc_linux86 >
6
+ <protoc_linuxaarch64 >$([System.IO.Path]::GetFullPath('$(protoc_tools)/linux_aarch64/protoc'))</protoc_linuxaarch64 >
6
7
<protoc_macosx64 >$([System.IO.Path]::GetFullPath('$(protoc_tools)/macosx_x64/protoc'))</protoc_macosx64 >
7
8
<protoc_macosx86 >$([System.IO.Path]::GetFullPath('$(protoc_tools)/macosx_x86/protoc'))</protoc_macosx86 >
8
9
<protoc_windows64 >$([System.IO.Path]::GetFullPath('$(protoc_tools)/windows_x64/protoc.exe'))</protoc_windows64 >
Original file line number Diff line number Diff line change 16
16
17
17
VERSION_NUMBER=$1
18
18
# <directory name> <binary file name> pairs.
19
- declare -a FILE_NAMES=( \
20
- windows_x86 windows-x86_32.exe \
21
- windows_x64 windows-x86_64.exe \
22
- macosx_x64 osx-x86_64.exe \
23
- linux_x86 linux-x86_32.exe \
24
- linux_x64 linux-x86_64.exe \
19
+ declare -a FILE_NAMES=( \
20
+ windows_x86 windows-x86_32.exe \
21
+ windows_x64 windows-x86_64.exe \
22
+ macosx_x64 osx-x86_64.exe \
23
+ linux_x86 linux-x86_32.exe \
24
+ linux_x64 linux-x86_64.exe \
25
+ linux_aarch64 linux-aaarch_64.exe \
25
26
)
26
27
27
28
set -e
You can’t perform that action at this time.
0 commit comments