In the cocoa fundamentals documentary, it mentions about the different compilers. The gcc, LLVM-GCC and Clang. Does anyone specifically know what they do and when to use them?
In the cocoa fundamentals documentary, it mentions about the different compilers. The gcc, LLVM-GCC
Share
They all do the same thing, produce executable object code that can be linked together to build a program (or shared library). They just do it in different ways.
Much more information on this is available on the LLVM site.