短错误:
file was built for archive which is not the architecture being linked (i386)
扩展:
对于某些模拟器,我在构建项目时收到以下错误:
ld: warning: ignoring file
/Users/admin/Library/Developer/Xcode/DerivedData/myApp-ekwldvjyuxwkykbareyvvydbtero/Build/Products/Debug-iphonesimulator/libFSCalendar.a,
file was built for archive which is not the architecture being linked
(i386):
/Users/admin/Library/Developer/Xcode/DerivedData/myApp-ekwldvjyuxwkykbareyvvydbtero/Build/Products/Debug-iphonesimulator/libFSCalendar.a
ld: warning: ignoring file
/Users/admin/Library/Developer/Xcode/DerivedData/myApp-ekwldvjyuxwkykbareyvvydbtero/Build/Products/Debug-iphonesimulator/libGBDeviceInfo.a,
file was built for archive which is not the architecture being linked
(i386):
/Users/admin/Library/Developer/Xcode/DerivedData/myApp-ekwldvjyuxwkykbareyvvydbtero/Build/Products/Debug-iphonesimulator/libGBDeviceInfo.a
ld: warning: ignoring file
/Users/admin/Library/Developer/Xcode/DerivedData/myApp-ekwldvjyuxwkykbareyvvydbtero/Build/Products/Debug-iphonesimulator/libSCLAlertView-Objective-C.a,
file was built for archive which is not the architecture being linked
(i386):
/Users/admin/Library/Developer/Xcode/DerivedData/myApp-ekwldvjyuxwkykbareyvvydbtero/Build/Products/Debug-iphonesimulator/libSCLAlertView-Objective-C.a
ld: warning: ignoring file
/Users/admin/Library/Developer/Xcode/DerivedData/myApp-ekwldvjyuxwkykbareyvvydbtero/Build/Products/Debug-iphonesimulator/libSSKeychain.a,
file was built for archive which is not the architecture being linked
(i386):
/Users/admin/Library/Developer/Xcode/DerivedData/myApp-ekwldvjyuxwkykbareyvvydbtero/Build/Products/Debug-iphonesimulator/libSSKeychain.a
Undefined symbols for architecture i386: "_OBJC_CLASS_$_FSCalendar",
referenced from:
objc-class-ref in VCalendarView.o "_OBJC_CLASS_$_GBDeviceInfo", referenced from:
objc-class-ref in VEMailView.o
objc-class-ref in DataClass.o "_OBJC_CLASS_$_SCLAlertView", referenced from:
objc-class-ref in VAlerts.o "_OBJC_CLASS_$_SCLAlertViewBuilder", referenced from:
objc-class-ref in VAlerts.o "_OBJC_CLASS_$_SCLAlertViewShowBuilder", referenced from:
objc-class-ref in VAlerts.o "_OBJC_CLASS_$_SSKeychain", referenced from:
objc-class-ref in VDescriptionView.o ld: symbol(s) not found for architecture i386 clang: error: linker command failed with exit code 1
(use -v to see invocation)
它适用于 iPhone 6 Plus 模拟器 9.3.0,但不适用于 iPhone 5s。为什么?我有 Other Linker Flags 选项的 $(inherited) 。
Best Answer-推荐答案 strong>
我通过删除DerivedData 目录解决了。
步骤:
在 Xcode 中,转到 菜单栏 → 窗口 → 项目。
在Projects窗口中,选择左侧的项目。
单击Derived Data 的删除... 按钮。当要求确认时,点击删除。
重建项目。
对于 Xcode 8,请参阅此问答:
How to delete derived data in Xcode 8?
关于ios - 为某些 iOS 模拟器构建的 CocoaPods 库错误,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/37990934/
|