From 357fa070a3313f833f2924bb7c096845bd52e37a Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Fri, 27 Sep 2024 10:29:35 +0300 Subject: [PATCH] Add gdb to build-tools (#9125) So that compute_ctl can use it to print backtrace on core dumps See issue #2800. --- Dockerfile.build-tools | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile.build-tools b/Dockerfile.build-tools index c4209c7a12..d8bcacf228 100644 --- a/Dockerfile.build-tools +++ b/Dockerfile.build-tools @@ -13,6 +13,9 @@ RUN useradd -ms /bin/bash nonroot -b /home SHELL ["/bin/bash", "-c"] # System deps +# +# 'gdb' is included so that we get backtraces of core dumps produced in +# regression tests RUN set -e \ && apt update \ && apt install -y \ @@ -24,6 +27,7 @@ RUN set -e \ cmake \ curl \ flex \ + gdb \ git \ gnupg \ gzip \