bloop icon indicating copy to clipboard operation
bloop copied to clipboard

'GLIBCXX_3.4.29' not found (required by bloop)

Open yaoshihyu2023 opened this issue 2 years ago • 4 comments

When using bloop_0.3.4_amd64.AppImage, the message "bloop: /lib/x86_64-linux-gnu/libstdc++.so.6: version 'GLIBCXX_3.4.29' not found (required by bloop)" is displayed. Is there any way to make it compatible with Ubuntu 20.04, or do I have to upgrade to 22.04?

Thanks

yaoshihyu2023 avatar Apr 27 '23 16:04 yaoshihyu2023

Same issue after installing in Debian GNU/Linux 11 (bullseye)

SebTorres avatar Apr 28 '23 21:04 SebTorres

Unfortunately we're limited by the packaging that Tauri does. The best I can do unfortunately is to try and build a .deb package on all target systems, and hope it works, as the AppImage will definitely not.

rsdy avatar May 04 '23 08:05 rsdy

Same issue with the .deb and the .AppImage in Ubuntu 20.04.6

bloop: /lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.29' not found (required by bloop)
bloop: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by bloop)
bloop: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by bloop)
bloop: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by bloop)

albertonoys avatar May 24 '23 13:05 albertonoys

Same issue on ZorinOS 16

mini@mini:~$ bloop
bloop: /lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.29' not found (required by bloop)
bloop: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by bloop)
bloop: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by bloop)
bloop: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by bloop)

Was able to solve GLIBCXX_3.4.29 by doing the following

sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt install -y g++-11

But for the rest , didn't find much except it maybe distro related issue or an app packaging issue or both.

AyushSehrawat avatar Jun 14 '23 14:06 AyushSehrawat