フィルターのクリア

mex can't find gcc in path

3 ビュー (過去 30 日間)
Robert
Robert 2011 年 8 月 22 日
Matlab-mex can't find my C compiler, even though it appears to be using the correct command. Observe:
In Matlab: >> mex foo.c /Applications/MATLAB_R2011a.app/bin/mex: line 305: gcc-4.2: command not found /Applications/MATLAB_R2011a.app/bin/mex: line 1041: gcc-4.2: command not found
In Terminal: $which gcc-4.2 /Developer/usr/bin/gcc-4.2
Any idea how to get mex to find the compiler? I'm using Mac OS Lion and 2011a.

採用された回答

Robert
Robert 2011 年 8 月 22 日
I figured it out. All I had to do is run: sudo ln -s /Developer/usr/bin/gcc-4.2 /usr/bin/gcc-4.2
The problem was that /Developer/usr/bin/ is in my Terminal path, but apparently not in mex's path when looking for a compiler.

その他の回答 (2 件)

Nathan
Nathan 2012 年 4 月 22 日
For anyone (like me) that the above fix did not work for, download the patch discussed here: http://www.mathworks.com/support/solutions/en/data/1-FR6LXJ/
And make the modification to mexopts.sh described here: http://www.mathworks.com/matlabcentral/newsreader/view_thread/317343
Those two did the trick for me.

Shahab
Shahab 2012 年 5 月 31 日
Thank you Nathan :) it is exciting.

カテゴリ

Help Center および File ExchangeWrite C Functions Callable from MATLAB (MEX Files) についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by