views:

410

answers:

1
+1  A: 

Link time optimization and debug information do not currently work together (as of Xcode 3.2, the debug symbols are stripped before they even reach the final executable) in LLVM.

Daniel Dunbar
Thank you! It means "Generate Debug Symbols" can be turned off to eliminate warning?
Ariel
Right, generating debug symbols isn't currently going to be worth doing in a Link Time Optimization build.
Daniel Dunbar