ITK添加编译后出现奇怪的错误

发布于 2024-12-26 09:49:21 字数 651 浏览 0 评论 0 原文

我刚刚安装了 ITK 以在 iOS 上使用,当我编译它时,我收到了这些奇怪的错误。

安装 ITK 时,我浏览了文档。最后一切都很好,但后来我开始努力在屏幕上实际显示 DICOM 图像的步骤,所以我使用了 这个。添加 2 个标头搜索路径以实际找到我需要的标头/类后,出现以下错误。

errors_screenshot

还有更多......但我想你明白了。我试过用谷歌搜索它们,但只发现其他一些人在 Linux 上遇到这个问题......在更改编译器或类似的东西之后......但我觉得这有点超出了我的理解范围,所以请帮助。

我尝试从 LLVM 更改为 gcc,但没有帮助,还尝试了 Xcode 版本 3.something、4 和 4.2,但还没有成功。

先感谢您

I just installed ITK for use on iOS and when I'm compiling it I get these weird errors.

When installing ITK i went through this document. All fine and ok at the end but then I strted working on the steps to actually show a DICOM image o screen, so I've used this one. After adding 2 more header search paths to actually find the headers/classes I needed I get the following errors.

errors_screenshot

There are a lot more ... but I think you get the idea. I've tried googling about them but only found some other people having this problem on linux ... after changing compilers or something like that ... but I feel like that is a bit over my head right now so please help.

I'vre tried to change from LLVM to gcc but it didn't help, also tried Xcode version 3.something, 4 and 4.2 and no luck yet.

Thank you in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

趁年轻赶紧闹 2025-01-02 09:49:21

显然你仍然缺少标题。我猜您的搜索路径不正确,或者您将它们添加到了错误的构建设置中。例如,如果路径是系统样式路径 (#include

),则它们应该进入“标头搜索路径”设置。但是,如果它们是用户样式路径(#include“header.h”),则它们应该进入“用户标头搜索路径”设置。

You're clearly still missing headers. I'd guess your search paths are not correct or you added them to the wrong build setting. For example, if the paths are system-style paths (#include <header>) they should go in the Header Search Paths setting. However if they're user-style paths (#include "header.h") they should go in the User Header Search Paths setting.

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