Hello,
Kodi is currently crashing at startup on unstable for me.
It doesn't provide any usable stack trace:
Core was generated by `/usr/lib/x86_64-linux-gnu/kodi/kodi.bin
--standalone --audio-backend=alsa --gl-interface=glx'.
Program terminated with signal SIGSEGV, Segmentation fault.
#0 0x0000000000000000 in ?? ()
[Current thread is 1 (Thread 0x7fe4038782c0 (LWP 191536))]
I rebuild the package locally and it doesn't crash anymore.
It is reproducible with the Dockerfile below.
Thanks for your work on debian-multimeda.
-----------------------------------------------------------------
FROM debian:sid-20250224
ARG DEBIAN_FRONTEND=noninteractive
# Set sources
COPY <<EOF /etc/apt/sources.list.d/dmo.sources
Types: deb deb-src
URIs:
https://www.deb-multimedia.org
Suites: unstable
Components: main non-free
Signed-By: /usr/share/keyrings/deb-multimedia-keyring.pgp
Enabled: yes
EOF
RUN sed -i "s|Types: deb|Types: deb deb-src|"
/etc/apt/sources.list.d/debian.sources
# Install packages
RUN apt-get update && \
apt-get install -y \
wget build-essential fakeroot gdb gpgv
RUN wget
https://www.deb-multimedia.org/pool/main/d/deb-multimedia-keyring/deb-multimedia-keyring_2024.9.1_all.deb
&& \
dpkg -i deb-multimedia-keyring_2024.9.1_all.deb
RUN apt-get update && \
apt-get install -y kodi
RUN apt-get build-dep -y kodi
-----------------------------------------------------------------
docker build --progress=plain --tag 'mykodi-dmo' . |& tee build.log
docker run -it --rm -v /tmp/.X11-unix:/tmp/.X11-unix -e
DISPLAY=${DISPLAY} mykodi-dmo bash
# Rebuild with and without options this way and both run OK:
mkdir /build && cd /build
DEB_BUILD_OPTIONS="nostrip noopt" apt -b source kodi
dpkg -i kodi_21.2-dmo3_amd64.deb