I downloaded DOOM BFA Version 1.2.8 but after running I got the message:
./DoomBFA: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.29 'not found (required by ./DoomBFA)
Is there any way to update these libraries in ubuntu 20.04?
I downloaded DOOM BFA Version 1.2.8 but after running I got the message:
./DoomBFA: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.29 'not found (required by ./DoomBFA)
Is there any way to update these libraries in ubuntu 20.04?
Translated into practical steps:
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt install -y g++-11
Then check if the version appears in the list:
strings /usr/lib/x86_64-linux-gnu/libstdc++.so.6 | grep GLIBCXX
Resource: https://lindevs.com/install-g-on-ubuntu
libstdc++.so.6.0.29
. Supplied with g++-11. Example PPA https://launchpad.net/~ubuntu-toolchain-r/+archive/ubuntu/test – Knud Larsen Feb 17 '22 at 17:56