I'm importing a 3rd-Party static library into my iOS Applicaton (using Xcode 5.1.1). When building the project I receive hundreds of warnings of the following type:
warning: (i386) /Users/USERNAME/Desktop/Development/SDKNAME/AWSS3.framework/AWSS3(S3ListObjectsResult.o) unable to open object file
These warnings are caused by dsymutil when it tries to generate a DSYM file. For some reason dsymutil is trying to find the object files for code contained in the framework at the local path of the developer that built the framework.
Which build settings in the static library would cause such an issue?
I found a couple of responses on Stack Overflow and other platforms: What do these Dsymutil Warnings mean in XCode 4.5? but none of them really explains the underlying problem.
I'm fairly new to Mach-O/DSYM things, so let me know if you need any other information to understand what the issue is.