问题描述
当我弹出一个Delphi项目的构建配置的上下文菜单中,我看到了让,建设和清除菜单项。
When I pop up context menu of a Delphi project's build configuration, I see menu items of "Make", "Build" and "Clean".
什么是与让与建设有什么不同?看来,这两个执行相同的任务。
What is the different between "Make" and "Build"? It seems that both perform same task.
推荐答案
- 构建编译所有的源文件中的项目。
- 请编译那些自上次make已更改或构建。
请注意,使实际上是一个有点复杂。一个单位,我们可以说是安盟,可即使安盟没有更改的化妆过程中需要重新编译。这发生安盟使用其他单位,unitB,并自上次make unitB的接口部分已经改变或构建。
Note that make is actually a little more complex. A unit, let us say unitA, can require re-compilation during a make even if unitA has not changed. This happens when unitA uses another unit, unitB, and the interface section of unitB has changed since the last make or build.
借助:
重建在当前的所有文件
项目不管它们
已改变。建筑是非常有用的时候
您不能确定哪些文件具有
改变,或者如果你已经改变
项目或编译器选项。
借助为使状态:
编译只有那些文件
自上次构建变化,以及
作为依赖于它们的任何文件。
这篇关于之间是什么&QUOT不同;使"和"构建和QUOT;项目构建配置的上下文菜单?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!