是否适用于iOS 8的GPUImage?

时间:2014-10-04 08:25:41

标签: ios objective-c iphone ios8 gpuimage

我在iOS8中收到GPUImage的错误信息,但它在iOS7中工作正常,所以有人知道GPUImage可用于iOS 8吗?

出现此错误:

Debug-iphoneos/libGPUImage.a file '/Users/xyz/Desktop/mno/project1/Latest/projectDemo/External Library/build/Debug-iphoneos/libGPUImage.a' for architecture armv7s
clang: error: linker command failed with exit code 1 (use -v to see invocation)

1 个答案:

答案 0 :(得分:1)

显然你拥有的libGPUImage副本中没有包含armv7s符号。

您需要从GitHub重新编译或重新下载然后重新编译GPUImage开源库。 You can find it here

GPUImage需要将一些其他框架链接到您的应用程序中,因此您需要在应用程序目标中添加以下链接库:

  

CoreMedia

     

corevideo的

     

OpenGLES

     

AVFoundation

     

QuartzCore