Please note that MATLAB does not run under GCC7 because of the ABI changes in libgfortran (major version number bumped from 3 to 4). Please install libgfortran6 in the AUR if you upgrade to GCC7.
Search Criteria
Package Details: matlab-gcc11 1:R2025b+25.2.0.2998904-2
Package Actions
Git Clone URL: | https://aur.archlinux.org/matlab.git (read-only, click to copy) |
---|---|
Package Base: | matlab |
Description: | A high-level language for numerical computation and visualization (GCC11 runtime dependency) |
Upstream URL: | https://www.mathworks.com/products/matlab.html |
Keywords: | computation matlab numerical visualization |
Licenses: | custom:MATLAB EULA |
Conflicts: | matlab-gcc, matlab-r2025b-gcc |
Provides: | matlab-gcc, matlab-gcc-release, matlab-gcc-version, matlab-r2025b-gcc |
Submitter: | ido |
Maintainer: | vitaliikuzhdin |
Last Packager: | vitaliikuzhdin |
Votes: | 41 |
Popularity: | 0.100348 |
First Submitted: | 2015-08-15 09:33 (UTC) |
Last Updated: | 2025-09-27 20:52 (UTC) |
Dependencies (6)
- gcc11AUR
- matlabAUR (matlab-supportAUR)
- gendesk (make)
- gnutls3.8.9AUR (make)
- inotify-tools (inotify-tools-gitAUR) (make)
- matlab-mpmAUR (make)
Required by (1)
- matlab (requires matlab-gcc) (optional)
Sources (1)
Latest Comments
« First ‹ Previous 1 .. 21 22 23 24 25 26 27 28 29 Next › Last »
qft commented on 2017-05-18 15:26 (UTC)
kausban commented on 2017-03-15 12:46 (UTC)
I needed to install gsreamer0.10 from the aur to get image aquisition adapters working and so that matlab could see my webcam and video device on matlab2016b.
Repentinus commented on 2017-03-08 18:10 (UTC) (edited on 2017-03-08 18:12 (UTC) by Repentinus)
If someone else has trouble installing R2016b using the provided PKGBUILD, then they might find this modified PKGBUILD <https://gist.github.com/anonymous/dc16ef3218404a5e31dc69cfd5390898> useful. I had to provide the network licence file to get the build to proceed and update the list of libraries to be deleted at the end, as R2016b has been linked with gcc4.9. I have also changed optdepends to reflect that. I have further prefixed all matlab binaries other than matlab with matlab- in /usr/lib/. I won't be uploading my PKGBUILD as matlab-r2016b as I cannot be bothered to clean it up and maintain it. If you find it useful and can be bothered to make sure the dependencies are all declared, please go ahead and upload it to AUR once cleaned up.
flying-sheep commented on 2017-01-26 10:31 (UTC) (edited on 2017-01-26 10:31 (UTC) by flying-sheep)
gstreamer0.10-base is gone. can matlab work with an up-to-date gstreamer?
tcuc commented on 2017-01-09 11:47 (UTC)
There's a pgp error, not sure how to solve it. guessing it's not a mitm on my side but just a different author.
==> Verifying source file signatures with gpg...
ncurses-6.0-20161224.tgz ... FAILED (unknown public key 702353E0F7E48EDB)
==> ERROR: One or more PGP signatures could not be verified!
The build failed.
Dependencies for `matlab' are not met, not building...
jsjolund commented on 2016-12-26 21:45 (UTC)
I had to install the libselinux package in order to use the Add-On Explorer in Matlab R2016b. https://se.mathworks.com/matlabcentral/answers/309629-cannot-open-add-on-window-on-linux
Maybe this package should be added to depends or optdepends?
xcabal commented on 2016-11-25 05:28 (UTC)
@daniel_shub
I figured out the issue thanks to you by removing &> /dev/null from line 66, turns out I
was giving it the wrong fik. I was under the impression that the number I was giving by my school was the fik, turns out it was not and my school gave me the correct fik to install
Thanks for the Help
daniel_shub commented on 2016-11-23 15:06 (UTC)
@xcabal what version of MATLAB are you installing? Is there anything in /mnt/f078739e-820f-40da-bf0d-838723a49f50/software/mat/pkg/matlab/opt/tmw/
You could try removing &> /dev/null from line 66 and you might get a more helpful error message.
xcabal commented on 2016-11-19 03:10 (UTC) (edited on 2016-11-19 03:10 (UTC) by xcabal)
I'm getting the following message trying to install matlab 2016b
==> Starting package()...
-> Starting MATLAB installer
-> Installing license
install: cannot stat '/mnt/f078739e-820f-40da-bf0d-838723a49f50/software/mat/pkg/matlab/opt/tmw/matlab/license_agreement.txt': No such file or directory
==> ERROR: A failure occurred in package().
Aborting...
im am not sure what it whats let alone how to fix it
anyone have any idea how to resolve this? thanks
kyak commented on 2016-10-16 13:19 (UTC)
With R2016b, if you get error like "Unable to start MATLABWindow process" with Add-on Explorer, Simulink gallery, Simulation Data Inspector etc, make sure to install this package: https://aur.archlinux.org/packages/libselinux/
MATLABWindow executable is linked with libselinux.so, so you need this.
Pinned Comments
vitaliikuzhdin commented on 2025-07-16 13:12 (UTC) (edited on 2025-08-05 20:05 (UTC) by vitaliikuzhdin)
TODO:
Figure out the users and permissions. Currently,
/opt/MATLAB/${_release}
has777
permissions, which is obviously undesired. It might be better to create a user group and require users to manually add themselves to it for security reasons.Improve the installer. For example, the current inotify watcher spams stdout and does not account for the end of the download/installation or the width of the terminal, which results in flaky output.
Figure out the dependencies. The list of Debian/RHEL dependencies is public, but it includes some seemingly unneeded packages. This might be because they are required by dependent products/add-ons. Additionally, the current logic for removing bundled dependencies should probably be rewritten. Maintaining an exhaustive list for a single release is very difficult, and these components change without notice. Moreover, the current approach may go against the Arch KISS philosophy. Ideally, we should remove only the problematic components like Qt, XCB,
libtiff
,gcc-libs
,fontconfig
, etc.Add auto-discovery for packages written for MATLAB. My plan was to use
/usr/lib/MATLAB/${_release}
for release-specific modules and/usr/lib/MATLAB/common
for shared (mostly architecture-independent) packages. However, load order matters, and "common" modules need to specify which releases they are compatible with. This means we need to implement our own logic for discovering and loading these, likely via hooks, shell scripts, and configuration files (perhaps TOML could work?).Fix the Python components.
python-matlabengine
does install the Python components built against the version of Python shipped by Arch. However, some proprietary CPython components are not included and are built against ancient Python versions. This likely requires version spoofing or some alternative approach.Write and upload packages for previous MATLAB releases. It is entirely possible to have multiple releases installed simultaneously. I have a few of these packages myself, but they are drafts and not suitable for upload to the AUR.
Write and upload packages for MATLAB-dependent add-ons and products. When installing MATLAB required user intervention for source access, it was acceptable to break reproducibility and manually specify required products for installation. Now that we use MPM, it would be better to separate products into individual packages. These packages would install themselves and their dependencies into a specific location, then use
appdata
to install only the component's files. The problem is that MATLAB often includes conflicting files that need to be combined or overwritten. Obviously, we can't allow that, so a hook must be implemented to, for example, combine*.combine@matlab-simulink
and replace*.replace@matlab-documentation
files with backups. Needless to say, this is challenging to implement, so the previous approach (having users specify the product list) might still be preferred.Write and upload the
matlab-runtime
package. I have a draft, but the problem with this package is that it installs the runtime for every available product. Ideally, for source-built packages, we would want tomakedepend
onmatlab-$product
anddepend
onmatlab-$product-runtime
. However, this is not possible without splitting the runtime packages, which poses the challenges described above. I’ll try my best to revisit this sometime later.vitaliikuzhdin commented on 2025-07-16 12:55 (UTC)
@aoneko, @Reexys, please read the post-installation instructions. If you've lost them, you can find the same information here.