Swift - missing required architecture i386 in file错误的解决

1,问题描述
最近使用腾讯官方  SDK 进行开发,下载的是最新版本。所以东西都配置好后,编译报错。(只有在  iPhone5 及  iPhone4s 模拟器上编译运行程序会有这个问题。)
报错信息如下:
ld: warning: ignoring file /Users/yuhang/Documents/Code/hangge_1070/TencentOpenAPI.framework/TencentOpenAPI, missing required architecture i386 in file /Users/yuhang/Documents/Code/hangge_1070/TencentOpenAPI.framework/TencentOpenAPI (3 slices)
Undefined symbols for architecture i386:
  "_OBJC_CLASS_$_TencentOAuth", referenced from:
      objc-class-ref in AppDelegate.o
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Swift - missing required architecture i386 in file错误的解决_第1张图片

2,原因分析
新版本的腾讯  SDK  的  CPU  框架不支持  i386  架构,而  iPhone5  及以下设备的模拟器是  i386  架构,所以会  missing required architecture i386 in file

3,解决办法
改成使用  iPhone5s  及以上版本的模拟器编译运行,或者直接使用  iPhone  真机。
Swift - missing required architecture i386 in file错误的解决_第2张图片

原文出自: www.hangge.com   转载请保留原文链接: http://www.hangge.com/blog/cache/detail_1363.html

你可能感兴趣的:(iOS,swift)