Why does MATLAB crash on Linux with "Inconsistency detected by ld.so: ../elf/dl-tls.c: 597: _dl_allocate_tls_init:"

664 ビュー (過去 30 日間)
When running MATLAB R2021b on my Linux machine, it sometimes crashes and the following error message appears in the terminal, or will appear at the top of the crash stack trace:
Inconsistency detected by ld.so: ../elf/dl-tls.c: 597: _dl_allocate_tls_init: Assertion `listp != NULL' failed!
This mostly occurs when I am trying to using Simulink for the first time after opening MATLAB

採用された回答

MathWorks Support Team
MathWorks Support Team 2023 年 8 月 11 日
編集済み: MathWorks Support Team 2022 年 9 月 27 日
This is a known issue in some releases of MATLAB.
Refer to the following External Bug Report for information on workarounds and fixes:
Note: You will need to log in to your MathWorks account to access this link.
  1 件のコメント
Richard Crozier
Richard Crozier 2022 年 11 月 9 日
Putting the following in your startup.m file may also solve the problem, it seems to have for me:
open_system(new_system('abcdef123456')); bdclose('abcdef123456');
I got this from another issue regarding simulink crashes.

サインインしてコメントする。

その他の回答 (2 件)

Michal
Michal 2022 年 10 月 21 日
編集済み: Michal 2022 年 10 月 21 日
I have similar problem with MATLAB coder on R2022b (Ubuntu Linux 20.04.3)
>> coder
>> Inconsistency detected by ld.so: ../elf/dl-tls.c: 517: _dl_allocate_tls_init: Assertion `listp != NULL' failed!
This is really terrible behavior of latest releases of MATLAB on Linux platforms, which are officially declared by TMW as fully supported.
But the main problem is, that TMW officially suggest to apply unofficial patch to glibc (which is one of most importatnt library in Linux OS)??!!

cui,xingxing
cui,xingxing 2023 年 3 月 9 日
編集済み: cui,xingxing 2023 年 3 月 28 日
1. Ubuntu 18.04/20.04 has libcanberra-gtk3-module (gtk-3.0+) installed by default, and Matlab needs to call the gtk-2.0+ canberra dynamic link library;
(In fact, there is also a 2.0+ version of the dynamic link library file in the gtk-3.0+ directory, but it seems that Matlab does not support multiple versions of libcanberra-gtk-module.so under the same path)
2. the linux default library is found under the path "/usr/lib/", while the canberra dynamic link library is located under the path "/usr/lib/x86_64-linux-gnu/";
Solution:
1. Install the gtk-2.0+ version of canberra by running the following command in the terminal:
sudo apt-get install libcanberra-gtk-module -y
2. Add a soft connection, run the following command in the terminal (many people are missing this step):
sudo ln -s /usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libcanberra-gtk-module.so /usr/lib/libcanberra-gtk-module.so
Reference:

カテゴリ

Help Center および File ExchangeIntroduction to Installation and Licensing についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by