필터 지우기
필터 지우기

mbuild -setup failed while mex -setup succeeded

조회 수: 3 (최근 30일)
Joanne
Joanne 2016년 1월 20일
답변: Harsheel 2016년 1월 21일
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