xcode 4 无法编译 openCL 应用程序
我尝试在 Xcode 4 上编译 openCL 应用程序,但没有成功。我创建新的 C 语言项目,然后添加 openCL 框架,创建必要的 .c 和 .cl 文件,并尝试编译。这是错误:
错误:无法执行'/System/Library/Frameworks/OpenCL.framework/Libraries/openclc'(没有这样的文件或目录)
我尝试谷歌搜索,但不成功。谁能帮助我吗?谢谢。
I try to compile openCL app on Xcode 4, but I'm not success. I create new C language project, then add openCL framework, create necessary .c and .cl files, and try compile. Here is the error:
error: can't exec '/System/Library/Frameworks/OpenCL.framework/Libraries/openclc' (No such file or directory)
I try googling, but unsuccess. Can anyone help me? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当 xcode 尝试编译 .cl 文件时,会弹出该错误。这些文件通常使用 clCreateProgramWithSource 函数在运行时编译。您可以通过从目标的“构建阶段”的“编译源”部分中删除 .cl 文件来消除该错误。您要做的如下:
这应该消除错误。
-奥马尔
That error pops up when xcode tries to compile the .cl files. These files are usually compiled at run-time using the clCreateProgramWithSource function. You can get rid of that error by removing the .cl files from the "Compile Sources" sections of the "Build Phases" of the target. Here is what you do:
That should get rid of the error.
-Umar