A friend updated Cocoapods in our project. When I pulled the last things from git, I got the following error:
Pods was rejected as an implicit dependency for 'libPods.a' because its architectures 'x86_64' didn't contain all required architectures 'i386'
The result is
ld: library not found for -lPods-___PODLIBRARY____ clang: error: linker command failed with exit code 1 (use -v to see invocation)
I searched around for hours trying to find him. The most common fixes I've tried are ...
- Remote Derived Data
- Delete assembly data
- Remove containers and reinstall using 'pod install'
- Clear project
- All of the above at the same time
- Experimented with "Build Active Architecture Only", both in our project and in the Pod Project. Introduced armv7 and armv7s as hard code instead of $ variable
- Experimented with "Architectures", both in our project, and in the Pod Project. Introduced armv7 and armv7s as hard code instead of $ variable
We are committed to iOS 8, iPhone.
My friend made him work by combining the first 4 options, but I canβt.
Does anyone have any suggestions? We have to release before Christmas, so production time is precious: D
xcode cocoapods compiler-errors
CA Dec 09 '14 at 21:14 2014-12-09 21:14
source share