Skip to content

Commit 25f4520

Browse files
authored
Update llvm.sh arguments (#1141)
Recent changes in this script have stopped accepting individual package names. It's either default set or `all`. Runtime builds started failing after dotnet/versions@e470ef2. Fixes dotnet/runtime#105176.
1 parent 8d5feda commit 25f4520

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

src/ubuntu/22.04/crossdeps/Dockerfile

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,8 @@ RUN apt-get update \
4141

4242
# install llvm-toolchain using official script
4343
RUN wget -O- https://apt.llvm.org/llvm.sh | bash -s -- 18 \
44-
clang \
45-
clang-tools \
46-
liblldb-dev \
47-
lld \
48-
lldb \
49-
llvm \
50-
python3-lldb \
44+
&& apt-get install -y \
45+
clang-tools-18 \
46+
liblldb-18-dev \
47+
llvm-18 \
5148
&& rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)