[libcxx-commits] [libcxx] 76667c7 - [libc++] Install missing package in the Dockerfile

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Thu Nov 26 12:14:54 PST 2020


Author: Louis Dionne
Date: 2020-11-26T15:14:48-05:00
New Revision: 76667c768e6403e71718340a946e6f2f356bf745

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

LOG: [libc++] Install missing package in the Dockerfile

python3-distutils is required to use `import distutils.spawn`, which is
required by the ABI list targets.

Added: 
    

Modified: 
    libcxx/utils/ci/Dockerfile

Removed: 
    


################################################################################
diff  --git a/libcxx/utils/ci/Dockerfile b/libcxx/utils/ci/Dockerfile
index d9cd5d9b206a..21fb7ff535e8 100644
--- a/libcxx/utils/ci/Dockerfile
+++ b/libcxx/utils/ci/Dockerfile
@@ -45,7 +45,7 @@ ENV DEBIAN_FRONTEND=noninteractive
 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 git gdb
+RUN apt-get update && apt-get install -y ninja-build python3 python3-sphinx python3-distutils git gdb
 
 # 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