Hi there.
In a fresh VCL application Compile and Build operation produce same binary and map file (with minor differences at the end of .exe file even if "include version information in project" option is switched off - already discussed). Map file is same bite to bite. But wen I add any third-party component the binary and map(!) file produced by Build and Compile are significantly differ!
Tested on two versions of Delphi:
- Version 7.0 (Build 8.1)
- CodeGear™ RAD Studio 2007 Version 11.0.2902.10471 (+December 2007 Update)
Step to reproduce:
- Create New VCL Application. Possibly add any native Delphi component (I try all components from Standart, Additional, Win32 and System tab).
- Turn on Detailed Map file on Linker tab of the Project Options.
- Build project.
- Rename output .exe and .map file (for example: project1.exe to project1b.exe and project1.map to project1b.map).
- Compile project.
- Rename output .exe and .map file (for example: project1.exe to project1c.exe and project1.map to project1c.map).
- Compare files from step 4 and 6. (I use WinMerge 2.12.4.0).
We have little different .exe files and fully identical .map files. Then if We repeat all steps again but use in the project third-paty component (I try ODAC, DOA, DevExpress and selfmade) We get more different .exe and different .map files.
Why? Any suggestions?
UPDATE
Some information about how I found this and why it's interesting me:
Project is build from simple script with MSBuild. When in the project was added translation thru ITE (dll with resources) I found that when project was Build (from script or from IDE) - translated version work wrong - some text on button, labels etc. got from wrong place (literally from another button, labels). When project Compiled from IDE - everything is ok. So I start compare Build and Compile output...