From 793da9edbb512b41fcea25deb4e6fec1743734c7 Mon Sep 17 00:00:00 2001 From: Egor Lazarchuk Date: Wed, 11 Dec 2024 15:10:01 +0000 Subject: [PATCH] chore: add a note about compiling libseccomp from scratch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We need to compile it from source because version provided by the distribution is not compiled with musl-gcc. Signed-off-by: Egor Lazarchuk Signed-off-by: Pablo Barbáchano --- tools/devctr/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/devctr/Dockerfile b/tools/devctr/Dockerfile index 9340c4c9c98..78e0f52e9e8 100644 --- a/tools/devctr/Dockerfile +++ b/tools/devctr/Dockerfile @@ -149,6 +149,10 @@ RUN cd /usr/include/$ARCH-linux-musl \ && ln -s ../asm-generic asm-generic # Install static version of libseccomp +# We need to compile from source because +# libseccomp provided by the distribution is not +# compiled with musl-gcc and we need this +# for our musl builds. # RUN apt-get update \ && apt-get -y install \