[llvm] [Github] Install `llvm-tools` in libc container (PR #210414)

via llvm-commits llvm-commits at lists.llvm.org
Sat Jul 18 12:33:57 PDT 2026


https://github.com/hulxv updated https://github.com/llvm/llvm-project/pull/210414

>From 8f440a7ec9d15a044c04116f425db27ecad17126 Mon Sep 17 00:00:00 2001
From: hulxv <hulxxv at gmail.com>
Date: Sat, 18 Jul 2026 22:33:42 +0300
Subject: [PATCH] [Github] Install `llvm-tools` in libc container

---
 .github/workflows/containers/libc/Dockerfile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/containers/libc/Dockerfile b/.github/workflows/containers/libc/Dockerfile
index 69f5b11cead62..007e903f782f0 100644
--- a/.github/workflows/containers/libc/Dockerfile
+++ b/.github/workflows/containers/libc/Dockerfile
@@ -45,6 +45,8 @@ RUN wget https://apt.llvm.org/llvm.sh && \
     sudo ./llvm.sh 23 && \
     rm llvm.sh
 
+RUN apt-get install -y llvm-23-tools
+
 # Install gmp and mpfr for cross compilation
 RUN wget https://ftp.gnu.org/gnu/gmp/gmp-6.3.0.tar.xz && \
     tar -xf gmp-6.3.0.tar.xz && \
@@ -113,7 +115,7 @@ RUN wget https://ftp.gnu.org/gnu/gcc/gcc-8.5.0/gcc-8.5.0.tar.xz && \
     rm -rf gcc-8.5.0 && \
     rm gcc-8.5.0.tar.xz
 
-    
+
 # Debian has a multilib setup, so we need to symlink the asm directory.
 # For more information, see https://wiki.debian.org/Multiarch/LibraryPathOverview
 RUN ln -sf /usr/include/$(uname -p)-linux-gnu/asm /usr/include/asm



More information about the llvm-commits mailing list