Is LLVM the default compiler in Xcode 4?

So, I just installed Xcode when I signed up for a dev program, so do I really need to change the compiler somewhere in Xcode or LLVM by default? Thanks in advance!

+3
source share
1 answer

"LLVM GCC 4.2" is used by default in initial release 4. (i.e.: LLVM server with GCC 4.2 analyzer).

You can verify this by creating a new project, selecting the main goal of the project (bit at the top of the left panel), and then select the "Build Settings" option in the main area. If you then select β€œAll” (default is β€œBasic”) and scroll down, you will see β€œLLVM GCC 4.2”, selected by default.

, , GCC 4.2 ( Xcode 3.x) LLVM.

( Xcode 3.2.x) Xcode 3.2.1 GCC CLANG LLVM demystification .

+4

All Articles