I'm using Delphi XE3. When I compile projects with FPC, the FPC compilers lists the files that it compiles (new or recompiled units). When I compile projects with Delphi XE3 the Messages window only shows the dcc command line string that is use and "Success" at the end. Is there a way to let it show me what files in found that needed to be recompiled - so I can be certain it picked up what it needed to.
In case you see the "Verbosity" combobox in Environment Options (it's there in XE4), try selecting Detailed or Diagnostic. It should then show more details in the output, like which MSBuild tasks were run/skipped.
ReplyDeleteOndrej Kelle : Thanks Ondrej - I tried "detailed" before, but that didn't help. After reading your message I tried the "diagnostic" option, and that gives the details I wanted. Many thanks.
ReplyDeleteThere are tricks for dcc and msbuild trick to generate a nice file with all the units used: wiert.me - Delphi compiler: the –depends switch / DCC_OutputDependencies property outputs a .d file listing all .dcu and .dcp files – via Stack Overflow/G+
ReplyDelete