Skip to content

Commit 8bbb8cf

Browse files
aescolarstephanosio
authored andcommitted
base: Install libc6-dbg:i386
In tests, users may see a segfault in CI which they may not be able to reproduce locally (due to having a different OS). A user may try to get more info in the CI by running the test with valgrind. But for valgrind to run with 32bit targets we need libc6-dbg:i386 installed. So let's install it by default so it is ready for users. Signed-off-by: Alberto Escolar Piedras <[email protected]>
1 parent 91b50be commit 8bbb8cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile.base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ RUN if [ "${HOSTTYPE}" = "x86_64" ]; then \
9696
apt-get -y update && \
9797
apt-get -y upgrade && \
9898
apt-get install --no-install-recommends -y \
99-
libsdl2-dev:i386 libfuse-dev:i386 \
99+
libsdl2-dev:i386 libfuse-dev:i386 libc6-dbg:i386 \
100100
; fi
101101

102102
# Initialise system locale

0 commit comments

Comments
 (0)