Issue with MATLAB install: ibmwfoundation_crash_handling.so: cannot enable executable stack as shared object requires: Invalid argument: Success: Success
이전 댓글 표시
Hey everyone!
I recently came across a bug on ArchLinux when using MATLAB. Since some time (about last week or 2 weeks ago), everytime I try and startup MATLAB (either from cmd, or application shortcut) I get the following error:
Command `service` threw an exception
Error loading /home/timey/.MathWorks/ServiceHost/-mw_shared_installs/v2025.1.1.2/bin/glnxa64/mathworksservicehost/rcf/matlabconnector/serviceprocess/rcf/service/libmwmshrcfservice.so. libmwfoundation_crash_handling.so: cannot enable executable stack as shared object requires: Invalid argument: Success: Success
I have tried uninstalling (deleting all matlab files from my system) and reinstalling, but nothing works. People in my class had similar problems, and switching to R2025 prerelease seemed to help, however, fro me that is not possible since the install script does not work.
Some additional information about my system:
Kernel: Linux 6.13.3-arch1-1
Host: HP Laptop 15-fc0xxx
OS: Arch Linux x86_64
CPU: AMD Ryzen 7 7730U (16) @ 4.55 GHz
GPU: AMD Barcelo [Integrated]
Memory: 6.14 GiB / 14.97 GiB (41%)
Any help / pointers to a solution would be greatly appreciated! :)
Thank you for reading!
채택된 답변
추가 답변 (4개)
Raymond Norris
2025년 2월 25일
1 개 추천
댓글 수: 6
Phillip
2025년 3월 30일
Dude could you please talk to them, lots of people including myself have this issue (500+ views).
With the utmost respect, this forum should be monitored, because this is the first link that comes up in google for this issue.
Perhaps we should just increase the package support on octave?
Octave doesn't crash because MATLAB trys to call home every time you open the application.
Raymond Norris
2025년 3월 30일
@Phillip for an issue like this, it's best if individuals contact MathWorks Technical Support directly. A help ticket gets created and the individual will get a quicker response, which will be based on their environment (OS, libraries, MATLAB version etc.).
There is a work around, just tested it
TL;DR install patchelf, its due to linker & executable stack issues with glibc and the fact that the compilation process isn't manually handling it
Replace bold with your details
then sudo patchelf --clear-execstack /home/user/.MathWorks/ServiceHost/-mw_shared_installs/v2025.1.1.2/bin/glnxa64/libmwfoundation_crash_handling.so
sudo patchelf --clear-execstack /home/user/.MathWorks/ServiceHost/-mw_shared_installs/v2025.1.1.2/bin/glnxa64/mathworksservicehost/rcf/matlabconnector/serviceprocess/rcf/service/libmwmshrcfservice.so

Raymond Norris
2025년 5월 14일
Timur
2025년 5월 14일
Sergio
2025년 2월 27일
0 개 추천
I have the same problem in Arch Linux
彬迅
2025년 2월 28일
0 개 추천
Me too!
댓글 수: 4
彬迅
2025년 2월 28일
this is my fastfetch
❯ fastfetch
admin@admin-X
OS: Garuda Linux x86_64
Host: ASUS TUF Gaming A16 FA607PI_FA607PI (1.0)
Kernel: Linux 6.13.4-zen1-1-zen
Uptime: 47 mins
Packages: 1980 (pacman)[stable], 6 (flatpak)
Shell: zsh 5.9
Display (B160QAN02.7 ): 2560x1600 @ 165 Hz (as 2048x1280) in 16" [Built-]
DE: KDE Plasma 6.3.2
WM: KWin (Wayland)
WM Theme: Sweet-Dark-transparent
Theme: Dr460nized# (Sweet) [Qt], Sweet-Dark [GTK2/3/4]
Icons: BeautyLine [Qt], BeautyLine [GTK2/3/4]
Font: Maple Mono NF CN Medium (10pt, Regular) [Qt], Maple Mono NF CN Med]
Cursor: Bibata-Rainbow-Modern (48px)
Terminal: konsole 24.12.2
Terminal Font: Maple Mono NF CN (12pt)
CPU: AMD Ryzen 9 7940HX (32) @ 5.31 GHz
GPU 1: NVIDIA GeForce RTX 4070 Max-Q / Mobile [Discrete]
GPU 2: AMD Radeon 610M [Integrated]
Memory: 6.20 GiB / 30.56 GiB (20%)
Swap: 26.48 MiB / 30.56 GiB (0%)
Disk (/): 46.84 GiB / 150.00 GiB (31%) - btrfs
Disk (/home): 147.31 GiB / 350.00 GiB (42%) - btrfs
Disk (/home/admin/Windows_D_Dir): 138.75 GiB / 250.00 GiB (55%) - fuseblk
Local IP (ppp0): 10.194.203.8/32
Battery (GA50358): 90% [AC Connected]
Locale: zh_CN.UTF-8
Sergio
2025년 2월 28일
I found a solution that worked for me. The answer from LyCC on the Arch Linux forum solved my issue.
彬迅
2025년 3월 1일
thank you! this is work!
The solution provided fixes the problem for a single user.
Same with the solution in section 3.35 in https://wiki.archlinux.org/title/MATLAB
My system has many users. Is there a solution for all users on the system?
Does R2025a fix the problem?
I'm using Fedora 42 updated to glibc-2.41-5.fc42.x86_64
Thanks!
댓글 수: 1
Calum
2025년 5월 14일
The Arch docs imply that R2025a fixes this, which seems likely. To solve the issue for all users on the system, you can run as root
execstack -c /home/*/.MathWorks/ServiceHost/-mw_shared_installs/*/bin/glnxa64/libmwfoundation_crash_handling.so
If you need to handle routinely adding new users, and/or make this solution last through an update to the service host, you can add that command to some of the various scripts which are run when new users are created. Or even just make it a cron job/systemd timer.
I suppose you can also globally change the override tunable glibc.rtld.execstack to be 2, force-enabling an executable stack. This is definitely not great for security, though.
카테고리
도움말 센터 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!