Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I moved a project originally coded in XCode 4.2 to XCode 4.5 and now I am getting the following warning when i build -

The compiler configuration is set to 'com.apple.compilers.llvmgcc42'. This will upgrade to 'Apple LLVM compiler 4.1', which is recommended setting for iOS targets'

I am unable to understand what versions of compilers are being referred. I searched for compiler version, but I am still confused between the terms "Apple LLVM" and "LLVM GCC". Pls help.

share|improve this question
Don't worry about LLVM GCC, It will not exist starting in the version of Xcode that comes after 4.6 (4.7 or 5.0) – borrrden Feb 25 at 6:55
I still want some clarity about the terms. A summary on the difference between these compilers. – Tushar Koul Feb 25 at 6:59

1 Answer

up vote 1 down vote accepted

Following are steps to overcome this warning

  1. Just Click on Project Target.
  2. Build Settings > Build Options.
  3. GCC_VERSION: < Select "Default compiler (Apple LLVM compiler 4.1)" or preferred one >
  4. Clean and build your app

EDIT

For your doubt about difference , I would like you to take a look at the following links.

  1. Link 1
  2. Link 2
  3. Link 3

Hope this helps.

share|improve this answer
Thanks for the answer. I knew about the changes in build settings. I just want to know why I'm getting this warning. Whats the difference b/w Apple llvm and llvm gcc. And if there is other jargon I should know about. – Tushar Koul Feb 25 at 7:02
please look at my updated answer. – Bhargavi Feb 25 at 7:19
yeah this helps. Thanks – Tushar Koul Feb 25 at 7:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.