Skip to content

Commit d91d9a1

Browse files
authored
Fix codespaces build by bumping clang llvm (dotnet#105385)
* Replace system clang. * Unify dockerfiles. * Update docs. * Feedback: typo
1 parent 34f125f commit d91d9a1

File tree

4 files changed

+28
-7
lines changed

4 files changed

+28
-7
lines changed

.devcontainer/Dockerfile

+9-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,19 @@
55
ARG VARIANT="6.0-jammy"
66
FROM mcr.microsoft.com/devcontainers/dotnet:0-${VARIANT}
77

8+
# Set up machine requirements to build the repo and the gh CLI
9+
# Clang-16 up is required but Ubuntu 22.04 comes with clang-14 highest, so add clang-18 sources
10+
RUN apt-get update \
11+
&& wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - \
12+
&& apt-get install software-properties-common -y \
13+
&& add-apt-repository "deb http://apt.llvm.org/$(lsb_release -s -c)/ llvm-toolchain-$(lsb_release -s -c)-18 main" -y \
14+
&& apt-get update \
15+
&& apt-get install clang-18 -y
16+
817
# Set up machine requirements to build the repo and the gh CLI
918
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
1019
&& apt-get -y install --no-install-recommends \
1120
cmake \
12-
llvm \
13-
clang \
1421
build-essential \
1522
python3 \
1623
curl \

.devcontainer/wasm-multiThreaded/Dockerfile

+9-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,19 @@
55
ARG VARIANT="6.0-jammy"
66
FROM mcr.microsoft.com/devcontainers/dotnet:0-${VARIANT}
77

8+
# Set up machine requirements to build the repo and the gh CLI
9+
# Clang-16 up is required but Ubuntu 22.04 comes with clang-14 highest, so add clang-18 sources
10+
RUN apt-get update \
11+
&& wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - \
12+
&& apt-get install software-properties-common -y \
13+
&& add-apt-repository "deb http://apt.llvm.org/$(lsb_release -s -c)/ llvm-toolchain-$(lsb_release -s -c)-18 main" -y \
14+
&& apt-get update \
15+
&& apt-get install clang-18 -y
16+
817
# Set up machine requirements to build the repo and the gh CLI
918
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
1019
&& apt-get -y install --no-install-recommends \
1120
cmake \
12-
llvm \
13-
clang \
1421
build-essential \
1522
python3 \
1623
curl \

.devcontainer/wasm/Dockerfile

+8-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,17 @@ ARG VARIANT="6.0-jammy"
66
FROM mcr.microsoft.com/devcontainers/dotnet:0-${VARIANT}
77

88
# Set up machine requirements to build the repo and the gh CLI
9+
# Clang-16 up is required but Ubuntu 22.04 comes with clang-14 highest, so add clang-18 sources
10+
RUN apt-get update \
11+
&& wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - \
12+
&& apt-get install software-properties-common -y \
13+
&& add-apt-repository "deb http://apt.llvm.org/$(lsb_release -s -c)/ llvm-toolchain-$(lsb_release -s -c)-18 main" -y \
14+
&& apt-get update \
15+
&& apt-get install clang-18 -y
16+
917
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
1018
&& apt-get -y install --no-install-recommends \
1119
cmake \
12-
llvm \
13-
clang \
1420
build-essential \
1521
python3 \
1622
curl \

docs/workflow/requirements/linux-requirements.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Install the following packages for the toolchain:
3737
* CMake 3.20 or newer
3838
* llvm
3939
* lld
40-
* clang
40+
* clang 16 or newer
4141
* build-essential
4242
* python-is-python3
4343
* curl
@@ -59,6 +59,7 @@ sudo apt install -y cmake llvm lld clang build-essential \
5959
```
6060

6161
**NOTE**: As of now, Ubuntu's `apt` only has until CMake version 3.16.3 if you're using Ubuntu 20.04 LTS (less in older Ubuntu versions), and version 3.18.4 in Debian 11 (less in older Debian versions). This is lower than the required 3.20, which in turn makes it incompatible with the repo. For this case, we can use the `snap` package manager or the _Kitware APT feed_ to get a new enough version of CMake.
62+
**NOTE**: If you have Ubuntu 22.04 LTS and older and your `apt` does not have clang version 16, you can add `"deb http://apt.llvm.org/$(lsb_release -s -c)/ llvm-toolchain-$(lsb_release -s -c)-18 main"` repository to your `apt`. See how we do it for linux-based containers [here](./../../../.devcontainer/Dockerfile).
6263

6364
For snap:
6465

0 commit comments

Comments
 (0)