Page 1 of 1

Manjaro KDE: Crashes with Zoom-In

Posted: Sat May 07, 2022 6:42 pm
by kishinnokamen
Whenever images require zoom-in, they crash. This happens with any filter above bilinear. I am using Manjaro KDE, and I have updated XnView. I am also using the libs version.

Code: Select all

/opt/xnviewmp/XnView: symbol lookup error: /opt/xnviewmp/XnView: undefined symbol: _ZdlPvm, version Qt_5

Re: Manjaro KDE: Crashes with Zoom-In

Posted: Mon May 09, 2022 7:40 am
by xnview
sorry but i can't reproduce, are you sur that you are using libs from package? which settings>View do you have?

Re: Manjaro KDE: Crashes with Zoom-In

Posted: Tue May 10, 2022 12:21 am
by kishinnokamen
I am positive that I am using the libs version.

Re: Manjaro KDE: Crashes with Zoom-In

Posted: Tue May 10, 2022 6:15 am
by xnview
and if you use bilinear?

Re: Manjaro KDE: Crashes with Zoom-In

Posted: Fri May 13, 2022 1:46 am
by kishinnokamen
No crashes on bilinear. It's just whenever I go above that filter that it crashes, and only if the viewer has to zoom in.

Re: Manjaro KDE: Crashes with Zoom-In

Posted: Fri May 13, 2022 8:15 am
by xnview
kishinnokamen wrote: Fri May 13, 2022 1:46 am No crashes on bilinear. It's just whenever I go above that filter that it crashes, and only if the viewer has to zoom in.
Strange, i can't reproduce on ubuntu, no crash with previous version?

Re: Manjaro KDE: Crashes with Zoom-In

Posted: Sat May 14, 2022 1:01 am
by kishinnokamen
The crash was always there. I just thought it was worth noting that I actually did update. Here's the inxi, in case that makes a difference.

Code: Select all

CPU: 8-core AMD Ryzen 7 5800X (-MT MCP-) speed/min/max: 3576/2200/4850 MHz
Kernel: 5.15.28-1-MANJARO x86_64 Up: 6d 19h 45m
Mem: 27201.8/64312.3 MiB (42.3%) Storage: 20.01 TiB (39.7% used) Procs: 526
Shell: Zsh inxi: 3.3.14

Re: Manjaro KDE: Crashes with Zoom-In

Posted: Tue May 17, 2022 7:05 am
by xnview
i've installed the latest version of Manjaro KDE, and no problem :(

Re: Manjaro KDE: Crashes with Zoom-In

Posted: Sun May 29, 2022 11:31 pm
by kishinnokamen
That is really strange. I wonder if I'm missing some kind of dependency?

Re: Manjaro KDE: Crashes with Zoom-In

Posted: Sat Aug 27, 2022 4:16 pm
by kasiuskaktus
Hi. I'm facing the same issue. However, I'm on Arch. I use the version xnviewmp-system-libs from the AUR. Obviously, this version is not using the included libs. I was able to "fix" this issue by appending the following line to file qt5_std_fun_forwarder.S before building the package.

Code: Select all

DEFINE_QT5_FORWARDER(_ZdlPvm)
I think it's a symbol mismatch. Xnview is linked against it's own library libQt5Core.so.5.15.6 and expects _ZdlPvm@@Qt_5. Arch is using libQt5Core.so.5.15.5 which has _ZdlPvm@CXXABI_1.3.9. I know, it's just another hack. But it works for v1.00. Haven't tried it with 1.02 though.