We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a81abd5 commit e2de1b1Copy full SHA for e2de1b1
.github/workflows/llvm.yml
@@ -27,6 +27,10 @@ jobs:
27
- uses: actions/checkout@v4
28
- uses: lukka/get-cmake@latest
29
30
+ - name: Install cross compilers
31
+ if: startsWith(matrix.config.os, 'ubuntu') && startsWith(matrix.config.platform, 'arm64')
32
+ run: apt install g++-aarch64-linux-gnu gcc-aarch64-linux-gnu
33
+
34
- name: Clone LLVM
35
shell: bash
36
run: build/build.sh clone_llvm
@@ -43,4 +47,4 @@ jobs:
43
47
uses: actions/upload-artifact@v3
44
48
with:
45
49
name: llvm
46
- path: build/llvm/llvm-*-*.*
50
+ path: build/llvm/llvm-*-*.*
0 commit comments