Skip to content

Commit

Permalink
Fix compiled aarch64 objects
Browse files Browse the repository at this point in the history
  • Loading branch information
hassandraga committed Jun 19, 2024
1 parent 104fd48 commit 734511a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/linux_arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ jobs:
run: |
CC=${{ matrix.cc }}
if [ "${{ matrix.arch }}" == "arm64" ]; then
CC=gcc
sudo apt update
sudo apt install -y gcc-aarch64-linux-gnu
CC=aarch64-linux-gnu-gcc
elif [ "${{ matrix.arch }}" == "arm" ]; then
sudo apt update
sudo apt install -y gcc-arm-linux-gnueabi
Expand Down

0 comments on commit 734511a

Please sign in to comment.