简体   繁体   English

这个编译器构建语句是什么意思?

[英]What does this compiler build statement mean?

I am a programming student in my second OOP class, which is taught in C++, and I am using Visual Studio 2008. 我是第二个OOP课程的编程学生,用C ++教授,我使用的是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. 当我在VS中构建我的项目时,我一直遇到这个奇怪的声明,我的项目构建正常,我只想知道它意味着什么。 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

The complete build log is here 完整的构建日志就在这里

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. 这意味着链接需要更长的时间。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM