File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -37,26 +37,26 @@ runs:
37
37
# Make sure to link libzstd statically
38
38
sudo rm /usr/lib/$arch-linux-gnu/libzstd.so
39
39
40
- - name : ' Linux: Install clang 19 from apt.llvm.org'
40
+ - name : ' Linux: Install clang 20 from apt.llvm.org'
41
41
if : runner.os == 'Linux'
42
42
shell : bash
43
43
run : |
44
44
set -eux
45
45
cd ..
46
46
curl -fL --retry 3 --max-time 30 -O https://apt.llvm.org/llvm.sh
47
- sudo bash llvm.sh 19
47
+ sudo bash llvm.sh 20
48
48
for tool in clang clang++ ld.lld; do
49
- sudo ln -sf $tool-19 /usr/bin/$tool
49
+ sudo ln -sf $tool-20 /usr/bin/$tool
50
50
$tool --version
51
51
done
52
- - name : ' Windows: Install clang v19 .1.3 from GitHub'
52
+ - name : ' Windows: Install clang v20 .1.3 from GitHub'
53
53
if : runner.os == 'Windows'
54
54
shell : bash
55
55
run : |
56
56
set -eux
57
57
cd ..
58
58
curl -fL --retry 3 --max-time 300 -o clang.exe \
59
- https://github.com/llvm/llvm-project/releases/download/llvmorg-19 .1.3/LLVM-19 .1.3-win64.exe
59
+ https://github.com/llvm/llvm-project/releases/download/llvmorg-20 .1.3/LLVM-20 .1.3-win64.exe
60
60
./clang.exe //S # double-slash for bash
61
61
rm clang.exe
62
62
# C:\Program Files\LLVM\bin should already be in PATH
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ concurrency:
14
14
cancel-in-progress : true
15
15
16
16
env :
17
- LLVM_VERSION : 19.1.7
17
+ LLVM_VERSION : 8c6fb1cf
18
18
19
19
jobs :
20
20
build-native :
@@ -255,6 +255,8 @@ jobs:
255
255
os : android
256
256
arch : armv7a
257
257
android_x86_arch : i686
258
+ extra_cmake_flags : >-
259
+ -DLDC_INSTALL_LLVM_RUNTIME_LIBS_ARCH=arm-android
258
260
259
261
- job_name : Android aarch64
260
262
host_os : ubuntu-22.04
You can’t perform that action at this time.
0 commit comments