Multiple flatpak apps including Liferea and Evolution fail to start, with the error
error while loading shared libraries: libgallium-24.3.0-devel.so: cannot open shared object file: No such file or directory
Both of these use org.gnome.Platform
version 46 (but so does e.g. Rhythmbox which doesn’t have this problem).
The library libgallium-24.3.0-devel.so
is provided by the asahi mesa flatpak package. It is accessible from the flatpak sandbox so I’m not sure why it can’t be loaded.
I have found a workaround:
flatpak run --command=env net.sourceforge.liferea LD_LIBRARY_PATH=/usr/lib/aarch64-linux-gnu/GL/host/lib/ /app/bin/liferea
(substitute liferea
and net.sourceforge.liferea
with your app)
Setting LD_LIBRARY_PATH
in flatseal doesn’t work, apparently flatpak clears that.