Cygwin 产生问题

发布于 2024-11-27 07:46:15 字数 249 浏览 1 评论 0原文

我尝试使用 cygwin make 进行交叉编译,但此规则不起作用,

$(HDIR)/%Fh: $(SDIR)/%F.ice $(SLICE2CPP) $(SLICEPARSERLIB) ,

我明白 Make * 没有规则可以创建目标 `../../include/Ice/PropertiesF.h'

在 Linux 下构建时相同的规则工作正常

有什么想法吗? cygwin make 中的错误?

i trying to cross-compile using cygwin make, but this rule doesn't work,

$(HDIR)/%F.h: $(SDIR)/%F.ice $(SLICE2CPP) $(SLICEPARSERLIB) ,

i get
Make * No rule to make target `../../include/Ice/PropertiesF.h'

The same rule works fine when build under Linux

Any ideas? a bug in cygwin make?

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

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

发布评论

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

评论(1

回心转意 2024-12-04 07:46:15

尝试将其放在该规则之上:

$(info HDIR: $(HDIR))
ifneq ($(HDIR), ../../include/Ice)
$(info HDIR is not what you think it is)
endif
$(info SDIR: $(SDIR))

尝试再次制作 ../../include/ice/PropertiesF.h,然后验证 PropertiesF.ice 是否位于您认为的位置是。

Try putting this just above that rule:

$(info HDIR: $(HDIR))
ifneq ($(HDIR), ../../include/Ice)
$(info HDIR is not what you think it is)
endif
$(info SDIR: $(SDIR))

Try making ../../include/ice/PropertiesF.h again, then verify that PropertiesF.ice is where you think it is.

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