我在 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)
Best Answer-推荐答案 strong>
显然,您拥有的 libGPUImage 副本中没有包含 armv7s 符号。
您需要从 GitHub 重新编译或重新下载并重新编译 GPUImage 开源库。 You can find it here .
GPUImage 需要一些其他框架才能链接到您的应用程序中,因此您需要将以下内容作为链接库添加到您的应用程序目标中:
CoreMedia
CoreVideo
OpenGLES
AVFoundation
QuartzCore
关于ios - GPUImage 可用于 iOS 8 吗?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/26191046/
|