Cygwin 产生问题
我尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将其放在该规则之上:
尝试再次制作
../../include/ice/PropertiesF.h
,然后验证PropertiesF.ice
是否位于您认为的位置是。Try putting this just above that rule:
Try making
../../include/ice/PropertiesF.h
again, then verify thatPropertiesF.ice
is where you think it is.