这个编译器构建语句是什么意思?
我是第二个 OOP 课程的编程学生,该课程是用 C++ 教授的,我正在使用 Visual Studio 2008。
当我在 VS 中构建我的项目时,我不断遇到这种奇怪的说法,我的项目构建得很好,我只是想知道这意味着什么。每次我构建项目时它都会出现,无论我单击“重建”还是使用什么配置都无关紧要。
谢谢!
语句:
LINK : C:\Users\Alex\Documents\Visual Studio 2008\Projects\Project_2\Debug\Project_2.exe 未找到或未由最后一个增量链接构建;执行完整链接
I am a programming student in my second OOP class, which is taught in C++, and I am using Visual Studio 2008.
I keep encountering this weird statement when I build my project in VS, my project builds fine, I would just like to know what it means. It appears every time I build my project, doesn't matter if I click rebuild or what configuration I use.
Thanks!
The statement:
LINK : C:\Users\Alex\Documents\Visual Studio 2008\Projects\Project_2\Debug\Project_2.exe not found or not built by the last incremental link; performing full link
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以安全地忽略它。
增量链接可以加快速度。所发生的情况是,它不是从头开始创建链接,而是使用最后一个链接的结果来加快速度。
如果它无法执行增量链接,它会向您发出警告并执行完整链接。这意味着链接需要更长的时间。
You can safely ignore it.
Incremental linking speeds things up. What happens is that rather then do a link from scratch, it uses the results of the last link to speed things up.
If it can't do an incremental link, it issues you that warning and does a full link. All it means is that it will take longer to link.