Tuesday, April 30, 2024
5
rated 0 times [  5] [ 0]  / answers: 1 / hits: 37705  / 3 Years ago, wed, july 7, 2021, 2:53:41

I'm building a program in a VM then deploying to another machine. This has been working for some time.



Today I've started receiving this error message when I attempt to execute my program:




/usr/lib/i386-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.19' not found




Both machines are running the same kernel version, and all packages are up to date:



$ uname -a
Linux darwin7 3.8.0-23-generic #34-Ubuntu SMP Wed May 29 20:24:54 UTC 2013 i686 i686 i686 GNU/Linux


How might I investigate and repair this issue?


More From » shared-library

 Answers
0

More lightweight solution is to install just libstdc++ from nondefault repository:



$ sudo add-apt-repository ppa:ubuntu-toolchain-r/test
$ sudo apt-get update
$ sudo apt-get install libstdc++6-4.7-dev

[#30789] Thursday, July 8, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
dicatandyca

Total Points: 486
Total Questions: 108
Total Answers: 121

Location: Greenland
Member since Wed, Jan 18, 2023
1 Year ago
;