Build Verbosity
From Apache OpenOffice Wiki
In CWS buildverbosity, probably to be integrated into DEV300.m63, the work started by Rüdiger Timm and Michael Meeks a while ago has been continued (though probably not finished): The OpenOffice.org build now has extensive support for different verbosity levels.
You control those levels by un/setting an environment variable VERBOSE, or by giving a verbose=...
parameter to the build
or dmake
call. Three different levels are implemented:
VERBOSE=TRUE
orverbose=true
- produces the most detailed output. In this mode, the build output is slightly more verbose than what you know up to milestone m62, echoing compiler command lines, and quite some (not all, not by far) commands executed by
dmake
VERBOSE
not set andverbose
not given- produces "normal" output. Nearly no command echos anymore, much less "fill" output, and a lot of tools is less gossipy, too.
VERBOSE=FALSE
orverbose=false
- Even less output. On Unix platforms, this is near to the "one line of output per file" goal, but not quite there.
There's still room for improvement - for instance, some places still emit too much noise even in quiet mode. Also,, the quiet and the normal mode currently do not differ very much. So, one option might be to make the quiet mode really quiet ...