How can I compile a C file in Matlab R2013a?
Mostrar comentarios más antiguos
Hello, I have a problem while trying to compile a C file with Matlab R2013a, the error I get is:
>> mex fsmem_mvgm.c
/Applications/MATLAB_R2013a.app/bin/mex: line 305: llvm-gcc-4.2: command not found
/Applications/MATLAB_R2013a.app/bin/mex: line 1343: llvm-gcc-4.2: command not found
mex: compile of ' "fsmem_mvgm.c"' failed.
Error using mex (line 206) Unable to complete successfully.
Thanks.
1 comentario
Walter Roberson
el 30 de Jul. de 2013
If you were using R2011* or R2012* the appropriate resource would be:
Respuestas (3)
Walter Roberson
el 30 de Jul. de 2013
0 votos
Be sure to install one of the supported compilers: see http://www.mathworks.com/support/compilers/R2013a/index.html?sec=maci64
2 comentarios
Bakhan
el 30 de Jul. de 2013
Walter Roberson
el 30 de Jul. de 2013
You should probably contact support.
Ken Atwell
el 30 de Jul. de 2013
0 votos
R2013a should work without modification with modern versions of Xcode. There is no need for any patch -- do not install the patch intended for older releases of MATLAB.
But, it sounds like you may have already done this ("llvm-gcc" is a tip-off, 13a should use clang). If you have a backup in Time Machine, I would restore MATLAB to the state it was in before the patch was applied. Otherwise, I'm afraid you'll need to reinstall MATLAB, sorry.
If problems persist, post again to MATLAB Answers with updated error messages.
1 comentario
Bakhan
el 5 de Ag. de 2013
Housen
el 20 de En. de 2014
I have encountered the same trouble. I use Mac OS 10.9.1 and Xcode 5.0.2. Since the command line tools are preinstalled, your solution does not help much. Instead of reinstalling Matlab, I found the following commands fix my problem:
cd /usr/bin
sudo ln -fs clang llvm-gcc-4.2
sudo ln -fs clang++ llvm-g++-4.2
6 comentarios
Marc
el 30 de En. de 2014
Hello Housen,
I tried using the lines of code you provided in the command window and it's giving an error of, "Undefined function 'sudo' for input arguments of type 'char'."
Please let me know if there is anything I can do on my end to fix this.
I am running OSX 10.9.1 and XCODE 5.0.2.
Walter Roberson
el 30 de En. de 2014
You need to do those at a shell command prompt, not within MATLAB.
Or you could use
! cd /usr/bin; sudo ln -fs clang llvm-gcc-4.2; sudo ln -fs clang++ llvm-g++-4.2
but you might get difficulties if you had not recently authenticated with sudo.
Marc
el 4 de Feb. de 2014
I tried doing that but nothing changed. I keep getting this error (any help is much appreciated!)
Error using feval
Undefined function 'nlplant' for input arguments of type 'double'.
Error in trimfun (line 118)
OUT = feval('nlplant',xu);
Error in fminsearch (line 191)
fv(:,1) = funfcn(x,varargin{:});
Error in trim_F16 (line 72)
[UX,FVAL,EXITFLAG,OUTPUT] = fminsearch('trimfun',UX0,OPTIONS);
Error in FindF16Dynamics (line 35)
[trim_state_hi, trim_thrust_hi, trim_control_hi, dLEF, xu_hi] = trim_F16(thrust, elevator, alpha,
aileron, rudder, velocity, altitude);
Walter Roberson
el 4 de Feb. de 2014
Does it appear to have compiled? Or did it give the "command not found" error similar to what is shown in the original question? nlplant is something you defined in a mex file, right?
Marc
el 5 de Feb. de 2014
It doesn't appear to have compiled nor did it give "command not found." I remember seeing nlplant a couple days ago but I do not recall what I did to get the nlplant to show.
Walter Roberson
el 5 de Feb. de 2014
Does
which -any nlplant
show anything?
Categorías
Más información sobre Matrix Indexing en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!