Xcode warnings linking to the user account that developed the third-party library

I use a third-party library in my project - BugSense. I added their scope to my project, initialized it, etc., so everything works fine.

However, every time I build my project, I get a large number (40+) of this warning:

warning: (i386) / Users / genesis / Library / Developer / Xcode / DerivedData / BugSense -fsjysjxoaitvkaexnywkyiktqgrt / Build / Intermediates / BugSense-iOS.build / Debug-iphonesimulator / BugSense-iOS.build / Objects-normal / i386Controller30 iServer o cannot open object file

each of which refers to a different .o file, but everything in / Users / genesis / Library / Developer / Xcode / DerivedData / BugSense-fsjysjxoaitvkaexnywkyiktqgrt / Build / Intermediates / BugSense-iOS.build / Debug-iphonesimulator / BugSense-iOS.build Objects-Normal / i386 /

The fact is that I don’t have a genesis account on my machine, so I suspect that she is pulling this value from this library, but for life I can’t find where.

Any help on correcting / eliminating this warning is appreciated.

Thank.

+5
source share
1 answer

If you installed GCC_GENERATE_DEBUGGING_SYMBOLS = NOa package that actually generates the framework and Bundle binary (and not Run Script that runs LIPO) into your target, your problem should go away.

: http://www.cocoanetics.com/2010/05/making-your-own-iphone-frameworks-in-xcode/#comment-2376

+3

All Articles