> On Jan 3, 2015, at 5:55 PM, Alan McKean <[email protected]> wrote: > > I found it. I had put the -ObjC flag in 'Other Linker Flags' and it caused > the build to report the CoreImage problem. Who woulda thunk it?
The -ObjC flag will keep class categories from getting dead-stripped. Normally you want that. It sounds like there's a category somewhere in your source code that calls Core Image. The problem is that your app linked, but if something else tries to call one of those stripped category methods, it'll throw an exception at runtime. —Jens -- You received this message because you are subscribed to the Google Groups "Couchbase Mobile" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/mobile-couchbase/8A8C56FF-3575-4520-B1F4-E72FFF5E245B%40couchbase.com. For more options, visit https://groups.google.com/d/optout.
