What is the difference between compiling and building in Delphi?

后端 未结 4 1165
灰色年华
灰色年华 2020-12-30 01:38

With Delphi-6 there are two options: Build and Compile.

I know when I run a program it compiles only the files which have changed and uses the DCUs for those which h

4条回答
  •  再見小時候
    2020-12-30 02:21

    You should always Build when changing settings.

    The previously compiled DCU files may have been compiled with different settings, such as compiler defines. Which can cause two units in the same project to be compiled with different settings.

提交回复
热议问题