[libcxx-commits] [libcxx] e9437d0 - [libc++] Install build-essential in the CI docker container (#185853)

via libcxx-commits libcxx-commits at lists.llvm.org
Wed Mar 11 03:36:03 PDT 2026


Author: Nikolas Klauser
Date: 2026-03-11T11:35:57+01:00
New Revision: e9437d01e4a95c0752937b9a35121457b5835afa

URL: https://github.com/llvm/llvm-project/commit/e9437d01e4a95c0752937b9a35121457b5835afa
DIFF: https://github.com/llvm/llvm-project/commit/e9437d01e4a95c0752937b9a35121457b5835afa.diff

LOG: [libc++] Install build-essential in the CI docker container (#185853)

We don't install a compiler via `apt` anymore, so we need to explicitly
install the utilities required to build stuff.

Added: 
    

Modified: 
    libcxx/utils/ci/docker/linux-builder-base.dockerfile

Removed: 
    


################################################################################
diff  --git a/libcxx/utils/ci/docker/linux-builder-base.dockerfile b/libcxx/utils/ci/docker/linux-builder-base.dockerfile
index 35fe80f08c0c8..71be99a1ffb20 100644
--- a/libcxx/utils/ci/docker/linux-builder-base.dockerfile
+++ b/libcxx/utils/ci/docker/linux-builder-base.dockerfile
@@ -51,6 +51,7 @@ RUN sudo apt-get update \
 RUN sudo apt-get update \
     && sudo apt-get install -y \
         bash \
+        build-essential \
         bzip2 \
         ccache \
         curl \


        


More information about the libcxx-commits mailing list