How can I compile a C file in Matlab R2013a?

1 view (last 30 days)
Bakhan
Bakhan on 30 Jul 2013
Commented: Walter Roberson on 5 Feb 2014
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.

Answers (3)

Walter Roberson
Walter Roberson on 30 Jul 2013
Be sure to install one of the supported compilers: see http://www.mathworks.com/support/compilers/R2013a/index.html?sec=maci64
  2 Comments
Bakhan
Bakhan on 30 Jul 2013
Thank you for your reply.
I already installed Xcode 4.6.3 as a supported compiler and I tried all the steps that described in http://www.mathworks.co.uk/support/solutions/en/data/1-FR6LXJ/ using Xcode 4.6 but it still doesn't work.
Walter Roberson
Walter Roberson on 30 Jul 2013
You should probably contact support.

Sign in to comment.


Ken Atwell
Ken Atwell on 30 Jul 2013
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 Comment
Bakhan
Bakhan on 5 Aug 2013
Dear Ken Atwell,
Thank you so much.
I have fixed the issue by installing the command line tools for Xcode.
Regards

Sign in to comment.


Housen
Housen on 20 Jan 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 Comments
Marc
Marc on 5 Feb 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.

Sign in to comment.

Categories

Find more on C Shared Library Integration in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!