I am having a go at developing my own framework for iPhone projects that I do but when I am testing my framework i keep getting this warning :
warning: (i386) /Users/neilandrew/Desktop/iPhoneTemplate/******/build/******.build/Release-iphonesimulator/********.build/Objects-normal/i386/VRMinLength.o unable to open object file
I have found this link that had the same problem Xcode warnings referencing user account that developed a third party library , but the comments just say to ignore it as its not really an issue to this person as its not there framework, but as I am making the framework how do I resolve this issue.
Thanks in advance.
You need to turn off debug symbols. In the Build Settings tab for your target search for debug and turn off GCC_GENERATE_DEBUGGING_SYMBOLS for the appropriate configurations. I like to keep them on for the debug configuration so I can debug, and remove them for the Release configuration.