Skip to content

Commit a78d44d

Browse files
lithdewLucasSte
authored andcommitted
[SOL] build: add aarch64-linux target
Add support for building for the aarch64-linux target.
1 parent ee2e46a commit a78d44d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ fi
99

1010
unameOut="$(uname -s)-$(uname -m)"
1111
case "${unameOut}" in
12-
Linux*) HOST_TRIPLE=x86_64-unknown-linux-gnu;;
12+
Linux-x86_64*) HOST_TRIPLE=x86_64-unknown-linux-gnu;;
13+
Linux-aarch64*) HOST_TRIPLE=aarch64-unknown-linux-gnu;;
1314
Darwin-x86_64*) HOST_TRIPLE=x86_64-apple-darwin;;
1415
Darwin-arm64*) HOST_TRIPLE=aarch64-apple-darwin;;
1516
MINGW*) HOST_TRIPLE=x86_64-pc-windows-msvc;;

0 commit comments

Comments
 (0)