From 2e0d4b93e6d9ae9656645d4bf82dbd408e4c83b0 Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Sat, 5 Oct 2024 22:19:59 -0500 Subject: [PATCH] Add psutil package When testing the toolchain with the llvm-test-suite, llvm-lit complains: Setting a timeout per test requires the Python psutil module but it could not be found. Try installing it via pip or via your operating system's package manager. Add the psutil package to workaround this failure. Signed-off-by: Brian Cain --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index fd814df..db364b2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,6 +45,7 @@ RUN apt update && \ bc \ ninja-build \ cpio \ + python3-psutil \ unzip RUN cat /etc/apt/sources.list | sed "s/^deb\ /deb-src /" >> /etc/apt/sources.list