"CXXABI_1.3.8 not found" Ubuntu 19.04

I'm having an issue with a dependencie of the MatLab runtime, it say that the libstdc++.so.6 need CXXABI_1.3.8.

I've seen some post that propose ton install an old version of GCC by adding a PPA, the probleme is that this PPA isn't avaible for the 19.04 version of ubuntu. Do you know any solution to get this dependencie working ?

4

1 Answer

Ubuntu 19.04, with g++-8

objdump -x /usr/lib/x86_64-linux-gnu/libstdc++.so.6 | grep CXXABI_1.3.8
37 0x00 0x0bafd178 CXXABI_1.3.8 CXXABI_1.3.8

Ref. MatLAB search: /usr/local/MATLAB/MATLAB_Runtime/v90/sys/os/glnxa64/

Please do :

export LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu:$LD_LIBRARY_PATH && [other command]

I.e. this will set /usr/lib/x86_64-linux-gnu/ first in the search path.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like