Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GLIBCXX_3.4.26 Not found

Tags:

c++

g++

libstdc++

I am trying to build open embedded project. But it shows some error like

/usr/lib/x86_64-linux-gnu/libstdc++.so.6: GLIBCXX_3.4.26 not found

How can i install GLIBCXX_3.4.26 in Ubuntu 16.04 ?

like image 804
shiva mahanty Avatar asked Oct 05 '18 10:10

shiva mahanty


1 Answers

I believe the object you are trying to use was compiled with a fairly recent version of GCC 9 with this bug fixed. This GCC version has not yet been released.

You need to recompile it with the Ubuntu system compiler, or ask the Ubuntu compiler people to backport this fix into the Ubuntu 16.04 system compiler (which seems fairly unlikely to happen at this point).

like image 146
Florian Weimer Avatar answered Sep 30 '22 19:09

Florian Weimer