We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 733ef2a commit 2a4ad72Copy full SHA for 2a4ad72
.github/workflows/cmake.yml
@@ -77,6 +77,14 @@ jobs:
77
sudo apt-get update
78
sudo apt-get install -y clang libc++-dev libc++abi-dev
79
80
+ - name: Set Clang 16 as Default
81
+ if: matrix.os == 'ubuntu-24.04' && matrix.c_compiler == 'clang'
82
+ run: |
83
+ sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-16 100
84
+ sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-16 100
85
+ sudo update-alternatives --set clang /usr/bin/clang-16
86
+ sudo update-alternatives --set clang++ /usr/bin/clang++-16
87
+
88
- name: Check Clang Settings
89
if: matrix.os == 'ubuntu-24.04' && matrix.c_compiler == 'clang'
90
run: |
0 commit comments