14

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?

Karol78
  • 156

2 Answers2

16

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

Aleks
  • 412
  • 1
  • 6
  • 15
1

Library for ubuntu 20.04 that updates to libstdc++.so.6.0.29

the wanted version.

Karol78
  • 156