xcode 4 无法编译 openCL 应用程序

发布于 2024-10-26 20:51:44 字数 236 浏览 1 评论 0原文

我尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

若无相欠,怎会相见 2024-11-02 20:51:44

当 xcode 尝试编译 .cl 文件时,会弹出该错误。这些文件通常使用 clCreateProgramWithSource 函数在运行时编译。您可以通过从目标的“构建阶段”的“编译源”部分中删除 .cl 文件来消除该错误。您要做的如下:

  1. 在项目导航器中选择项目。
  2. 选择目标。
  3. 单击顶部的“构建阶段”选项卡。
  4. 展开编译源部分。
  5. 选择 .cl 文件并单击“-”按钮
  6. 运行您的程序。

这应该消除错误。

-奥马尔

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:

  1. Select the Project in the Project Navigator.
  2. Select the target.
  3. Click on the Build Phases tab on the top.
  4. Expand the Compile Sources section.
  5. Select the .cl files and click the "-" button
  6. Run your program.

That should get rid of the error.

-Umar

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文