Issue with libstdc++.so.6

288 次查看(过去 30 天)
Luis Martins
Luis Martins 2017-3-14
评论: cr 2023-2-8
Dear all,
I'm running matlab r2017a on a linux Fedora 25 machine and when I tried to call an external program that required the graphical interface I got the following error.
OpenSees: /usr/local/MATLAB/R2017a/sys/os/glnxa64/libstdc++.so.6: version `GLIBCXX_3.4.21' not found (required by OpenSees)
OpenSees: /usr/local/MATLAB/R2017a/sys/os/glnxa64/libstdc++.so.6: version `CXXABI_1.3.9' not found (required by OpenSees)
When I used a built-in function of matlab I also got a similar error
Error using waitbar (line 111) Improper arguments for waitbar.
Error in selectRecords (line 8) h = waitbar(0,'Processing records');
Caused by: Error using axes Can't load '/usr/local/MATLAB/R2017a/bin/glnxa64/libmwosgserver.so': /usr/local/MATLAB/R2017a/bin/glnxa64/../../sys/os/glnxa64/libstdc++.so.6: version `CXXABI_1.3.9' not found (required by /lib64/libGLU.so.1)
I checked using the terminal and I've got the latest version of that library installed
sudo dnf install libstdc++ Last metadata expiration check: 0:56:33 ago on Tue Mar 14 13:05:15 2017.Package libstdc++-6.3.1-1.fc25.x86_64 is already installed, skipping.Package libstdc++-6.3.1-1.fc25.i686 is already installed, skipping.Dependencies resolved.Nothing to do.Complete!
Could you please provide some guidance on how to solve this issue?
cheers L.M.
  1 个评论
Nader Fathy
Nader Fathy 2021-2-9
Hello,
I had a similar issue using CentOS 7 and the following solved the issue for me:
yum install compat-libstdc++-33.x86_64
Hope this helps!
Kindest Regards,
Nader Fathy

请先登录,再进行评论。

采纳的回答

Archita P
Archita P 2017-3-20
编辑:Archita P 2017-3-20
This issue might be due to an incompatibility between the libstdc++ shipped with MATLAB and the libstdc++ shipped with the system that the other application was linked against.
"CXXABI_1.3.9 not found" error message indicates that the libstdc++.so.6 library that is included with MATLAB is missing ABI versions the system needs to draw graphical content.
This is caused because the version of this particular library packaged with MATLAB is older than the versions that come with newer Linux operating systems, which causes compatibility issues.
You can try the following workarounds: 1. Renaming the libstdc++.so.6 library file so that MATLAB cannot find it and is forced to use the system's version of the library. This file is located in matlabroot/sys/os/glnxa64 . Renaming it to libstdc++.so.6.old should suffice. (where "matlabroot" is root installation directory of MATLAB)
2. Forcing MATLAB to load the system version by setting the $LD_PRELOAD environment variable to the newer version of libstdc++.
Also, since you are trying to call an external program from MATLAB, this may be a third party issue. But, you can try setting the library paths correctly in 'LD_LIBRARY_PATH' system variable.
  13 个评论
Lukas Heyn
Lukas Heyn 2022-11-14
solved the problem for me in Matlab R2022b and Ubuntu 22.04, too
cr
cr 2023-2-8
This is brilliant. It worked. I had been banging my head for a day.

请先登录,再进行评论。

更多回答(3 个)

John Smith
John Smith 2019-7-12
You need to be careful with making sure you load the correct libstdc++6.
I use it to load "brainstorm", an EEG analysis program that requires the runtime Matlab library.
On Fedora 30, I solved it just as follows:
LD_PRELOAD="/lib64/libstdc++.so.6" path_and_name_of_programme_here
Also, note that you can check whether CXXABI_1.3.9 is included simply as follows:
strings /lib64/libstdc++.so.6 | grep CXXABI
You should then see that in the text part of that library. If it shows up, it means it should work.

S.Y Wang
S.Y Wang 2017-12-9
"import matlab.engine" should at the first line of the script.
  2 个评论
Ramesh Babu
Ramesh Babu 2017-12-26
Hi,
I am still facing the same problem even after inducing the following line in .bashrc. Did I correctly entered the path in bashrc file?
#MATLAB
export PATH=/usr/local/MATLAB/R2017b/bin:$PATH
export MATLABCMD=/usr/local/MATLAB/R2017b/bin/glnxa64/MATLAB
alias matlab="LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libstdc++.so.6 /usr/local/bin/matlab
When I open matlab I found the message pasted below and it opens normally.
$ matlab
/usr/local/MATLAB/R2017b/bin/glnxa64/../../sys/os/glnxa64/libstdc++.so.6: version `CXXABI_1.3.9' not found (required by /usr/lib/x86_64-linux-gnu/libproxy.so.1) Failed to load module: /usr/lib/x86_64-linux-gnu/gio/modules/libgiolibproxy.so
I am afraid will this affect processing?
Thanks
Ramesh
BRSC User
BRSC User 2020-4-9
See suggested solution above.

请先登录,再进行评论。


Luis Rosety
Luis Rosety 2022-5-16
I had the same problem with Kubuntu 22.05 and the solution was what was posted in askubuntu.com:
  1. Star Matlab with
matlab -softwareopengl
2. Once in Matlab, run the command
opengl('save','software')

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by