Skip to content

Commit

Permalink
Fix for clang < 16
Browse files Browse the repository at this point in the history
  • Loading branch information
kgorking committed Oct 26, 2023
1 parent 8fe33e5 commit ad69f2e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ jobs:
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh ${{ matrix.version }}
sudo apt install clang-tools-${{ matrix.version }} libstdc++-12-dev
sudo apt install clang-tools-${{ matrix.version }}
sudo apt remove libstdc++-13-dev
sudo apt install libstdc++-12-dev
- name: Configure
shell: cmake -P {0}
Expand Down

0 comments on commit ad69f2e

Please sign in to comment.