We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4cb15c commit 8868068Copy full SHA for 8868068
1 file changed
.github/workflows/buildbinaryen.yml
@@ -36,7 +36,10 @@ jobs:
36
if: runner.os == 'Linux'
37
run: |
38
sudo apt-get update
39
- sudo apt-get install -y clang clang++ cmake make
+ sudo apt-get install -y clang-16 clang++-16 cmake make
40
+ sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-16 100
41
+ sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-16 100
42
+
43
44
- name: Install build deps (Windows)
45
if: runner.os == 'Windows'
0 commit comments