Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: update clang to version 17 #156

Closed
wants to merge 14 commits into from
Closed
6 changes: 3 additions & 3 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM ubuntu@sha256:2b7412e6465c3c7fc5bb21d3e6f1917c167358449fecac8176c6e496e5c1f

ARG BATS_VERSION=1.10.0
ARG CCACHE_VERSION=4.8.3
ARG CLANG_VERSION=16
ARG CLANG_VERSION=17
ARG DOCKER_VERSION=24.0.6
ARG MULL_VERSION=main
ARG INCLUDE_WHAT_YOU_USE_VERSION=0.20
Expand Down Expand Up @@ -92,6 +92,6 @@ RUN update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++-12 20 \
&& update-alternatives --install /usr/bin/cc cc /usr/bin/gcc-12 20 \
&& update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-12 10 \
&& update-alternatives --install /usr/bin/iwyu iwyu /usr/local/bin/include-what-you-use 10 \
&& update-alternatives --install /usr/bin/mull-runner mull-runner /usr/local/bin/mull-runner-${CLANG_VERSION} 10 \
&& update-alternatives --install /usr/lib/mull-ir-frontend mull-ir-frontend /usr/local/lib/mull-ir-frontend-${CLANG_VERSION} 10 \
&& update-alternatives --install /usr/bin/mull-runner mull-runner /usr/local/bin/mull-runner-15 10 \
&& update-alternatives --install /usr/lib/mull-ir-frontend mull-ir-frontend /usr/local/lib/mull-ir-frontend-15 10 \
&& update-alternatives --install /usr/bin/python python /usr/bin/python3 10
16 changes: 8 additions & 8 deletions .devcontainer/apt-requirements-clang.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"clang-16": "1:16.0.6~++20230710042027+7cbf1a259152-1~exp1~20230710162048.105",
"clangd-16": "1:16.0.6~++20230710042027+7cbf1a259152-1~exp1~20230710162048.105",
"clang-format-16": "1:16.0.6~++20230710042027+7cbf1a259152-1~exp1~20230710162048.105",
"clang-tidy-16": "1:16.0.6~++20230710042027+7cbf1a259152-1~exp1~20230710162048.105",
"clang-tools-16": "1:16.0.6~++20230710042027+7cbf1a259152-1~exp1~20230710162048.105",
"libclang-rt-16-dev": "1:16.0.6~++20230710042027+7cbf1a259152-1~exp1~20230710162048.105",
"lld-16": "1:16.0.6~++20230710042027+7cbf1a259152-1~exp1~20230710162048.105",
"llvm-16": "1:16.0.6~++20230710042027+7cbf1a259152-1~exp1~20230710162048.105"
"clang-17": "1:17.0.4*",
"clangd-17": "1:17.0.4*",
"clang-format-17": "1:17.0.4*",
"clang-tidy-17": "1:17.0.4*",
"clang-tools-17": "1:17.0.4*",
"libclang-rt-17-dev": "1:17.0.4*",
"lld-17": "1:17.0.4*",
"llvm-17": "1:17.0.4*"
}