I'm getting errors when launching external programs that use qt, which happens to be all my external programs.
smplayer
Code: Select all
usr/bin/smplayer: /opt/xnviewmp/lib/libQt5Core.so.5: version `Qt_5.11' not found (required by /usr/bin/smplayer)
Code: Select all
/usr/lib/gimp/2.0/plug-ins/gmic_gimp: /opt/xnviewmp/lib/libQt5Core.so.5: version `Qt_5.11' not found (required by /usr/lib/gimp/2.0/plug-ins/gmic_gimp)
I'm assuming this is an arch problem as it's always using the latest versions and it seems xnviewmp is still using qt version 5.9.5.
What I discovered while troubleshooting this is that if gimp was already open before opening an image from xnviewmp, I would have no troubles with the qt plugin crashing. Also, if I launch smplayer from a bash script that launches it from the console, it will work as well.
Code: Select all
#!/bin/bash
xfce4-terminal --tab --drop-down -x smplayer --verbose "$@
Cheers