vc9 错误 4430 在一台机器上,在另一台机器上没有
在两台不同的机器上编译相同的代码。我们有一些 int 函数在 CPP 文件中没有明确定义。
一台机器编译得很好,另一台则不行。真正奇怪的是,直到昨天他们都工作得很好。其中一台机器丢失了其 Visual Studio 包含和链接路径,现在编译变得更加复杂。
我们应该寻找什么?
提前致谢。
Compiling the same code on two different machines. We have int functions that are not explicitly defined as such in the CPP file.
One machine compiles fine, the other doesn't. What's really weird is that they were both working fine until yesterday. One of the machines lost its visual studio include and link paths and now the compile is being much fussier.
What should we be looking for?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们发现了问题。附加产品的头文件中必须包含disable:4430。在某些时候,该路径丢失了,并且正在加载旧版本。
谢谢!
We found the issue. An add-on product must have had the disable:4430 in its header files. At some point that paths to that was lost and it was loading an older version.
thanks!