vote up 3 vote down star
2

Is there a way to force the Delphi compiler to display all hints and warnings all the time?

Here is the behavior that I am currently seeing in Delphi 6:

  1. Check out fresh copy of my application from source control
  2. Open project in Delphi and Compile
  3. All hints and warnings for the project are displayed
  4. Make a change in one unit
  5. Compile
  6. Only the hints and warnings for the changed unit are displayed

So, I thought maybe I can trick Delphi by deleting all of the dcu files to force it to recompile everything. No luck. The compiler does in fact recompile all of the units, but does not display the hints and warnings for those units.

EDIT: Performing a full build (Project > Build) yields the same unfortunate results.

NEW INFORMATION: If I modify a unit and then Compile, I get the warnings. However, if I modify a unit and then Build, I do not get the warnings. I'm thinking this points to warnings being turned off somewhere. Possibly in a third party library?

It seems there ought to be a way to ask Delphi to re-display all of those hints and warnings that doesn't require me to either check out a fresh copy from source control or modify each unit one-by-one.

flag

Delphi 1 or Delphi 2009, or something inbetween? It would be helpful to know... – Roddy Jun 10 at 21:00
I am using Delphi 6 – Scott W Jun 10 at 21:04

4 Answers

vote up 1 vote down check

I would check to see if you turn the warnings off in some of your units.
Depending on the last change in the units, the compiling order can change. In some cases the warnings can remain disabled for a unit that is compiled after while, when freshly checked out of version control, it was compiled before, with the warnings.
Pay extra attention to any Include file you may use.

link|flag
I am not explicitly including any files (beyond uses statements) and my interpretation of the help files on the $WARN and $WARNINGS directives is that they do not apply beyond the scope of the current unit. In any case, I haven't got any of those directives in my code. Could a used unit from a third party library cause the problem? – Scott W Jun 15 at 14:21
We have had this problem with 3rd party code where the scope was not limited as expected. – François Jun 15 at 17:01
vote up 5 vote down

Hints and Warnings are generated by the compiler. It will only report on units that it has compiled. The "compile" command will only compile files that have changed. To force a recompilation of all units used by your project, use the Build command instead.

Later versions assign a shortcut key (Shift+F9) to the "Build" command.

To get that keyboard shortcut in Delphi 6, install this utility, which I've used for a while with great success on Delphi 5.

link|flag
Doing a full build yields the exact same results as a Compile. – Scott W Jun 10 at 20:51
What happens if you manually delete all the .DCU files, and then do a full build? – JosephStyons Jun 10 at 20:52
Still the same result, I'm afraid. – Scott W Jun 10 at 20:54
But if you close the IDE, then reopen it & do a full build... you get all the hints & warnings (the first time).. right? – JosephStyons Jun 10 at 20:56
6  
Doing a full build should definitely /not/ return the same results as a second compile. I suspect you aren't compiling the code you think you are compiling. I'd check your paths to make absolutely sure that the code you think you are compiling is indeed getting compiled. – Nick Hodges Jun 11 at 0:29
show 9 more comments
vote up 1 vote down

If you use dcc32.exe, all warnings will be shown, always. (This is another reason why I use build scripts for all my projects.)

link|flag
1  
That is not completely true, only when the -B switch is given to dcc32, which is the equivalent of doing a full build in the IDE. Without that switch dcc32 defaults to doing incremental builds too. And warnings will be shown only for units that get compiled, obviously. – mghie Jun 11 at 4:18
1  
You are right, -B is required. For some projects I start with copying the sources to a empty target directory structure, only in this case a -B is not necessary. – mjustin Jun 11 at 6:18
vote up 0 vote down

I am still using D6 for some projects and if I do a full build then all hints and warnings are displayed/re-displayed. For syntax check or compile only changed unit messages are displayed.

You have something else wrong or damaged somewhere. Try deleting the project .dsm and the .dof files (they will be rebuilt) the .dof file contains the warnings and hints flags.

link|flag
No luck with having the DOF regenerated. I cannot find any .dsm file in my project. – Scott W Jun 15 at 14:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.