Mex on macosx without xcode

22 次查看(过去 30 天)
Magnus
Magnus 2016-10-14
评论: Christian Busse about 20 hours 前
I want to compile mex files without installing xcode, using only Command Line Tools (from apple developer center).
Apple Command Line Tools install the compiler and adds standard libraries and headers to the system in a package much smaller than xcode (which is several GBs).
Running mex on linux is possible - I see no reason why matlab mex should require the huge SDKs for macos. A long evening of trial and error and hacking configuration files hasn't helped. Does anyone have a minimal working example of how to compile a mex file outside matlab, or a simple way to use mex without having xcode installed?
Best Regards, Magnus
  2 个评论
Martin Andersen
Martin Andersen 2018-9-20
I figured out a way around it. Open a terminal window and run the following command:
/usr/libexec/PlistBuddy -c 'Add :IDEXcodeVersionForAgreedToGMLicense string 10.0' ~/Library/Preferences/com.apple.dt.Xcode.plist
This creates a property file with an Xcode version number (the value of which probably doesn't matter). You should now be able to use Command Line Tools without installing Xcode.
Alek Pikl
Alek Pikl 2020-11-4
编辑:Alek Pikl 2020-11-4
This fixed it for me.
My problem was running mex on a macbook without having to install the full Xcode.
Running
mex -setup
returned an error somewhat in the lines of xcode licence not accepted .
I installed CL Tools but couldn't accept the licence by using
sudo xcodebuild -license
due to some error that CL Tools are not Xcode...

请先登录,再进行评论。

回答(3 个)

Magnus
Magnus 2016-10-17
  3 个评论
Art
Art 2019-1-15
I also had success using the plist trick.
Roy Goodman
Roy Goodman 2021-9-24
@Magnus can you share the XML file that you created in Option 2 of your stackexchange answer? I tried to modify it myself, but didn't know what I was doing and got an error when I tried to run mex.

请先登录,再进行评论。


Ian
Ian 2022-1-7
There is another solution that works with 2021b: https://stackoverflow.com/a/41538477/415013 — I do not have enough space to install XCode and command-line tools can compile mex files so this solution works well! Mathworks should make it easier to use the command-line tools rather than require the massive XCode install...

Christian Busse
Christian Busse 2024-11-19,11:51
The following solution is from https://gist.github.com/martinandersen/1fea529ec04885c63477ccb944394494 but also mentioned in the same stackoverflow thread reference above.
Run the following command in the mac terminal:
defaults write com.apple.dt.Xcode IDEXcodeVersionForAgreedToGMLicense 16.1
Make sure to adjust 16.1 to your actual xcode version, which you can show using:
pkgutil --pkg-info=com.apple.pkg.CLTools_Executables
The defaults write command in macOS is a terminal command used to modify macOS application preferences by writing to the application’s property list (plist) files. Adding that property indicates to MATLAB that the license has been accepted for the specified version.
Now you can verify that the compilers are working in MATLAB by checking the output from:
mex -setup
Also I would run some of the examples from here https://de.mathworks.com/help/releases/R2024b/matlab/ref/mex.html
to test if everything is working.
  2 个评论
Roy Goodman
Roy Goodman 2024-11-19,12:54
I followed this command and Christian's suggestions to work through the examples. The following line returned an error:
mex -largeArrayDims fulltosparse.F loadsparse.F
Can XCode handle these Fortran files?
Christian Busse
Christian Busse about 20 hours 前
Indeed, the Xcode compilers are only for C and C++. For Fotran, you would need to install a separate compiler. According to MATLAB documentation the NAG Fortran Compiler is verified to work with Mac on Apple Silicon: https://de.mathworks.com/support/requirements/supported-compilers-mac.html

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by