I just implemented the Objective Flicker library for an iPhone app and after much testing set the target to Distribution and started getting the following error:
-fobjc-gc not supported for iPhone OS: ignoring
unfortunately it is not being ignored and the build fails. I have no clue as to where to begin to research what needs to be adjusted as this is at compile/link time and I have so far had no reason to delve into the intricacies involved. Any hints as to how to go about learning/fixing this issue would be greatly appreciated.
It looks like your library is using the garbage collection features of Objective-C 2.0. You will need to change that if you want it to work properly on the iPhone, where garbage collected Objective-C doesn’t exist. From the man page:
The comment at the end there about “non-GC” environments applies only to non-GC Mac OS X programs, not to iPhone applications.