delphi – 项目构建配置的上下文菜单中“Make”和“Build”有什么不同?

前端之家收集整理的这篇文章主要介绍了delphi – 项目构建配置的上下文菜单中“Make”和“Build”有什么不同?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我弹出Delphi项目的构建配置的上下文菜单时,我看到“Make”,“Build”和“Clean”的菜单项.

“Make”和“Build”有什么不同?看来两者都执行相同的任务.

解决方法

>构建编译项目中的所有源文件.
>编译自上次制作或构建以来已更改的那些.

请注意,make实际上更复杂一点.一个单位,让我们说unitA,即使unitA没有改变,也可能需要重新编译.当unitA使用另一个单元unitB,并且unitB的接口部分自上次制作或构建以来发生变化时,会发生这种情况.

documentation建造州:

Rebuilds all files in your current
project regardless of whether they
have changed. Building is useful when
you are unsure which files have
changed,or if you have changed
project or compiler options.

documentation制作状态:

Compiles only those files that have changed since the last build,as well as any files that depend on them.

原文链接:https://www.f2er.com/delphi/101500.html

猜你在找的Delphi相关文章