Reputation: 1115
I have a project that I can deploy to my iphone and simulator with no problem. When I try to archive it, I get a error.
Here is XCBuildConfiguration that was requested.
I don't know why i would randomly have this problem. The only changes I have made recently was I added app icon images.
Upvotes: 3
Views: 5320
Reputation: 47591
Enable Index-While-Building Functionality
to No.In Xcode, Build Settings
> Build Options
> Enable Index-While-Building Functionality
set it to "No".
If that worked, make sure to upvote this answer where I got it from:
https://stackoverflow.com/a/48717558/293280
Upvotes: 0
Reputation: 13343
In the Other C Flags build setting there is an -iquote
argument that is not followed by the required directory argument. This causes the subsequent -isystem
argument in the clang invocation to be interpreted as the directory for the stray -iquote
and /Users/ethan/WorkSpace/StudyTree/JASidePanels-master/../Pods/Headers
to be interpreted as an additional input file, resulting in the multiple output files error.
Either remove the -iquote
argument from the build setting or add the directory argument.
Upvotes: 3