diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-08 17:32:12 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-08 17:32:12 +0000 |
commit | f8b4a8e988de9fa5f366015dd631dd6a5c49a8f3 (patch) | |
tree | 9f3616d60d6fe07fe279bc40258a21c372041159 /llvm/docs | |
parent | 1619c72a92a88905826c55daa108b84e41cdb691 (diff) | |
download | bcm5719-llvm-f8b4a8e988de9fa5f366015dd631dd6a5c49a8f3.tar.gz bcm5719-llvm-f8b4a8e988de9fa5f366015dd631dd6a5c49a8f3.zip |
Implement and document the TOOL_VERBOSE option that asks each tool invoked
to be verbose about its actions too.
llvm-svn: 17624
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/MakefileGuide.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/docs/MakefileGuide.html b/llvm/docs/MakefileGuide.html index cb2cba5d280..43ed704c903 100644 --- a/llvm/docs/MakefileGuide.html +++ b/llvm/docs/MakefileGuide.html @@ -563,6 +563,12 @@ <dt><a name="TOOLNAME"><tt>TOOLNAME</tt></a></dt> <dd>Specifies the name of the tool that the current directory should build.</dd> + <dt><a name="TOOL_VERBOSE"><tt>TOOL_VERBOSE</tt></a></dt> + <dd>Implies VERBOSE and also tells each tool invoked to be verbose. This is + handy when you're trying to see the sub-tools invoked by each tool invoked + by the makefile. For example, this will pass <tt>-v</tt> to the GCC + compilers which causes it to print out the command lines it uses to invoke + sub-tools (compiler, assembler, linker).</dd> <dt><a name="USEDLIBS"><tt>USEDLIBS</tt></a></dt> <dd>Specifies the list of project libraries that will be linked into the tool or library.</dd> |