[libcxx-commits] [libcxx] 4277add - [libc++] Install missing packages to cross-compile to 32 bits during CI

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Wed Dec 2 13:46:12 PST 2020


Author: Louis Dionne
Date: 2020-12-02T16:45:53-05:00
New Revision: 4277adda1d2f1e88e3556806dfc71d736146213c

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

LOG: [libc++] Install missing packages to cross-compile to 32 bits during CI

Added: 
    

Modified: 
    libcxx/utils/ci/Dockerfile

Removed: 
    


################################################################################
diff  --git a/libcxx/utils/ci/Dockerfile b/libcxx/utils/ci/Dockerfile
index 21fb7ff535e8..ea9856d950eb 100644
--- a/libcxx/utils/ci/Dockerfile
+++ b/libcxx/utils/ci/Dockerfile
@@ -46,6 +46,7 @@ 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
 
 # Install the most recently released LLVM
 RUN apt-get update && apt-get install -y lsb-release wget software-properties-common


        


More information about the libcxx-commits mailing list