Skip to content

Commit 507b350

Browse files
committed
Add support for aarch64 on linux
1 parent 09b3296 commit 507b350

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ fi
8181

8282
case $BSH_HOST_ARCH-$BSH_HOST_PLATFORM-$BSH_HOST_LIBC-$BSH_STATIC_DYNAMIC in
8383
x86_64-linux-gnu-static) ;;
84+
aarch64-linux-gnu-static) ;;
8485
x86_64-windows-mingw-static) ;;
8586
x86_64-windows-msvc-static) ;;
8687
x86_64-windows-msvc-dynamic) ;;

.github/prepare.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ def set_output(key, value):
2020
configurations = []
2121
for bsh_host_arch, bsh_host_platform, bsh_host_libc, bsh_static_dynamic, bsh_build_platform, runs_on in [
2222
( 'x86_64' , 'linux', 'gnu', 'static', 'linux', 'ubuntu-22.04' ),
23+
( 'aarch64' , 'linux', 'gnu', 'static', 'linux', 'ubuntu-22.04-arm' ),
2324
( 'x86_64' , 'windows', 'mingw', 'static', 'windows', 'windows-2019' ),
2425
( 'x86_64' , 'windows', 'msvc', 'static', 'windows', 'windows-2019' ),
2526
( 'x86_64' , 'windows', 'msvc', 'dynamic', 'windows', 'windows-2019' ),

0 commit comments

Comments
 (0)