mbuild -setup failed while mex -setup succeeded

4 次查看(过去 30 天)
I use mac 10.11, matlab_2014b, and xCode 7.2. At first I could not run mex -setup but after I change the mac version in mexopts.sh, it succeeded. And then I also changed the mac version in mbuildopts.sh, but this time, when I ran mbuild -setup, it just failed. It says
Error using mbuild (line 164)
Unable to complete successfully.
No supported compiler or SDK was found. For options, visit
http://www.mathworks.com/support/compilers/R2014b/maci64.html.
Any help would be super appreciated!!!

回答(1 个)

Harsheel
Harsheel 2016-1-21
Since R2014a, a new MBUILD and new MEX were shipped. It seems like you are using the old MEX (which uses mexopts.sh file) instead of the new MEX (which uses the matlabroot\bin\maci64\mexopts\clang ... xml files..2 of them).
Either you can:
  1. Modify the 2 clang XML files in there and then both new MBUILD and new MEX will work correctly
  2. Modify the mbuildopts.sh file (which you have already done), set environment variable MBUILD_VERSION1 and then old MBUILD will work correctly.
setenv('MBUILD_VERSION1','1')
You need to set this variable every time MATLAB starts, so I'd keep that line of code in startup.m file.

类别

Help CenterFile Exchange 中查找有关 Manage Products 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by