Why am I unable to compile a C shared library on a MAC Snow Leopard with MATLAB Compiler 7.11 (R2009b) ?
1 view (last 30 days)
Show older comments
MathWorks Support Team
on 23 Nov 2009
Edited: MathWorks Support Team
on 27 Jan 2017
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.
Accepted Answer
MathWorks Support Team
on 27 Jan 2017
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 Comments
More Answers (0)
See Also
Categories
Find more on Introduction to Installation and Licensing 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!