Skip to content

Commit

Permalink
Update llvm.yml to install AArch64 cross compilers
Browse files Browse the repository at this point in the history
  • Loading branch information
tritao committed Feb 6, 2024
1 parent a81abd5 commit e2de1b1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/llvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ jobs:
- uses: actions/checkout@v4
- uses: lukka/get-cmake@latest

- name: Install cross compilers
if: startsWith(matrix.config.os, 'ubuntu') && startsWith(matrix.config.platform, 'arm64')
run: apt install g++-aarch64-linux-gnu gcc-aarch64-linux-gnu

- name: Clone LLVM
shell: bash
run: build/build.sh clone_llvm
Expand All @@ -43,4 +47,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: llvm
path: build/llvm/llvm-*-*.*
path: build/llvm/llvm-*-*.*

0 comments on commit e2de1b1

Please sign in to comment.