[libcxx-commits] [libcxx] e56eea2 - [libc++] Install GDB in the Docker images

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Fri Nov 13 08:58:04 PST 2020


Author: Louis Dionne
Date: 2020-11-13T11:57:54-05:00
New Revision: e56eea26cad153f4b26df8b5d4c295e10cb47de5

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

LOG: [libc++] Install GDB in the Docker images

This will allow running the GDB pretty printer tests.

Added: 
    

Modified: 
    libcxx/utils/ci/Dockerfile

Removed: 
    


################################################################################
diff  --git a/libcxx/utils/ci/Dockerfile b/libcxx/utils/ci/Dockerfile
index 908557308647..d9cd5d9b206a 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
+RUN apt-get update && apt-get install -y ninja-build python3 python3-sphinx 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