Skip to content

Commit

Permalink
feat: handle ARM64 Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mistydemeo committed Jun 27, 2024
1 parent eeb4c25 commit 1b2211c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions axolotlsay-js/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ if [ -n "${CARGO_DIST_TARGET:-}" ]; then
x86_64-unknown-linux-gnu)
bun_args="--target bun-linux-x64 --outfile ${EXE_BASENAME}"
;;
aarch64-pc-windows-msvc)
echo "bun doesn't currently provide ARM binaries for Windows; unable to build"
exit 1
;;
*)
echo "Platform not supported: ${CARGO_DIST_TARGET}"
exit 1
Expand Down

0 comments on commit 1b2211c

Please sign in to comment.