What is the difference between compiling and building in Delphi?

后端 未结 4 1163
灰色年华
灰色年华 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条回答
  •  Happy的楠姐
    2020-12-30 02:15

    @Daisetsu, here is the difference between build and compile.

    Build compiles all used units in an project when the source code is available.

    Compile compiles only changed used units.

    in my personal experience when you make changes to the configuration of the compiler, you must execute a build of the application, so that changes will be reflected in all units of the project.

提交回复
热议问题