[libcxx-commits] [libcxx] 4aba7e9 - [libc++][CI] Don't install libc6-dev-i386 in the Docker image
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Jan 3 13:11:06 PST 2022
Author: Louis Dionne
Date: 2022-01-03T16:10:59-05:00
New Revision: 4aba7e901e60d168bdb32ab37e9f281f551d47d3
URL: https://github.com/llvm/llvm-project/commit/4aba7e901e60d168bdb32ab37e9f281f551d47d3
DIFF: https://github.com/llvm/llvm-project/commit/4aba7e901e60d168bdb32ab37e9f281f551d47d3.diff
LOG: [libc++][CI] Don't install libc6-dev-i386 in the Docker image
We don't cross-compile to 32 bits in the CI anymore.
Added:
Modified:
libcxx/utils/ci/Dockerfile
Removed:
################################################################################
diff --git a/libcxx/utils/ci/Dockerfile b/libcxx/utils/ci/Dockerfile
index 1aeeeb73d78b..034fe7b87a0b 100644
--- a/libcxx/utils/ci/Dockerfile
+++ b/libcxx/utils/ci/Dockerfile
@@ -43,7 +43,6 @@ RUN apt-get update && apt-get install -y bash curl
# Install various tools used by the build or the test suite
RUN apt-get update && apt-get install -y ninja-build python3 python3-sphinx python3-distutils git gdb
-RUN apt-get update && apt-get install -y libc6-dev-i386 # Required to cross-compile to 32 bits
# Locales for gdb and localization tests
RUN apt-get update && apt-get install -y language-pack-en language-pack-fr \
More information about the libcxx-commits
mailing list