bloop
bloop copied to clipboard
'GLIBCXX_3.4.29' not found (required by bloop)
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
Same issue after installing in Debian GNU/Linux 11 (bullseye)
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.
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)
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.