Undefined symbols for architecture x86_64

Posted ZhangDreamK

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Undefined symbols for architecture x86_64相关的知识,希望对你有一定的参考价值。

  总结一下 编译常见的几个错误:

Undefined symbols for architecture x86_64


   Xcode升级到5.1 新特性之一就是默认让所有App都通过64位编译器编译。原来在Xcode5.0.x的时候默认的Standard architectures只有(arm7,armv7s),到5.1之后默认就带上arm64的参数了

  现在有两种解决办法:

第一种解决办法:

1.选中Targets—>Build Settings—>Architectures。

把build active architectures only 改为 NO。


2.把最下面的Valid Architectures中的arm64参数删掉就可以了


  第二种解决办法:

  双击Architectures,选择other,删除$(ARCH_STANDARD),然后增加armv7和armv7s(写上:$(ARCHS_STANDARD_32_BIT))。


clean build 工程就完事了

还有个not found for architecture  i386  出现这个问题多是静态库.a文件    第三方类库不支持模拟器 用真机测试吧  真机是arm7的  


查看支持方法:


检查你的第三方库文件,找到你的库文件所在地址,使用命令行,cd到该文件所在文件夹下,然后检测:使用如下命令lipo -info <这里填写你的第三方库文件名> ,,然后看看你的东西支不支持i386,如果不支持,没关系这不是什么大事,只是不支持模拟器而已,看看你的东西支不支持armv7,arm64,如果支持那就好办,用真机开发就OK了如果还不支持,告诉你的服务商,赶紧提供编译器支持的版本


http://hudongdong.com/skill/120.html 这个地址有图片指导

ld: warning: ignoring file /Users/zhangdream/Downloads/SmarterStreaming-master/SourceCode/ios/SmartiOSPublisher/SmartiOSPublisher/libs/libSmartPublisherSDK.a, missing required architecture i386 in file /Users/zhangdream/Downloads/SmarterStreaming-master/SourceCode/IOS/SmartiOSPublisher/SmartiOSPublisher/libs/libSmartPublisherSDK.a (2 slices)

Undefined symbols for architecture i386:

  "_OBJC_CLASS_$_SmartPublisherSDK", referenced from:

      objc-class-ref in ViewController.o

ld: symbol(s) not found for architecture i386

clang: error: linker command failed with exit code 1 (use -v to see invocation)


像这样   就是模拟器不支持虚拟机  换真机测试

 




以上是关于Undefined symbols for architecture x86_64的主要内容,如果未能解决你的问题,请参考以下文章

Undefined symbols for architecture arm64:问题

Undefined symbols for architecture armv7错误解决方法

Undefined symbols for architecture xxx,出错总结

Cocoapods Undefined symbols for architecture armv7sarm64

static报错 Undefined symbols for architecture x86_64

解决Undefined symbols for architecture arm64问题