[libcxx-commits] [libcxx] [libc++] Install build-essential in the CI docker container (PR #185853)
Nikolas Klauser via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Mar 11 03:35:36 PDT 2026
https://github.com/philnik777 created https://github.com/llvm/llvm-project/pull/185853
We don't install a compiler via `apt` anymore, so we need to explicitly install the utilities required to build stuff.
>From 5e896be1a123e56ccae2d52bbf09b375c7842426 Mon Sep 17 00:00:00 2001
From: Nikolas Klauser <nikolasklauser at berlin.de>
Date: Wed, 11 Mar 2026 11:34:32 +0100
Subject: [PATCH] [libc++] Install build-essential in the CI docker container
---
libcxx/utils/ci/docker/linux-builder-base.dockerfile | 1 +
1 file changed, 1 insertion(+)
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