Posts

Showing posts with the label Stack frame

Debug vs Release in Delphi Build Configurations

Image
In Delphi when we develop a software for any client first we create a Delphi project and then we add the required files like dfm, pas to the project. Then during the development process we  compile, debug and run the project several times to find and resolve issues. Once the development is done then we release the software to our client as an EXE file format for use. In Delphi IDE we prepare the EXE file from menu Project ->  Build option. Compiling,  Running and  Building When we develop an application, we compile, build, and run the application directly from the IDE. Compiling, running and building will produce the executable file. Compiling does code syntax check and will compile the application with compiling the units that have changed since the last Build. Compiling produces DCU files. Running compiles the code and runs the application. We can run with debugging (F9) or without debugging (Ctrl+Shift+F9). If run without debugging, then the ...