Why am I unable to compile a C shared library on a MAC Snow Leopard with MATLAB Compiler 7.11 (R2009b) ?
1 次查看(过去 30 天)
显示 更早的评论
MathWorks Support Team
2009-11-23
编辑: MathWorks Support Team
2017-1-27
I am trying to compile a C shared library from MATLAB 7.9 (R2009b) and I get the following errors:
/Applications/MATLAB_R2009b.app/bin/mbuild: line 1749: gcc-4.0: command not found
mbuild: compile of ' "/Users/panagas/work/yo_wrapper/lab_lib/src/imuLabLib/src/libImuCalibration.c"' failed.
Error: An error occurred while shelling out to mbuild (error code = 1).
I was able to compile this same code earlier with Leopard. I recently upgraded to Snow Leopard.
采纳的回答
MathWorks Support Team
2017-1-27
When upgrading from Leopard to Snow Leopard, XCode does not get upgraded by default. In order to be able to compile your code with the MATLAB Compiler 7.11 (R2009b), you should do either one of two things:
1) Upgrade your XCode to Snow Leopard.
2) Create a symbolic link from /usr/bin to the actual location where GCC is installed. The name of the symbolic link should be gcc-4.0. The command to create this link will be
ln -s MYTARGET gcc-4.0
where MYTARGET is the location where the GCC compiler is installed on your system.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!