summaryrefslogtreecommitdiffstats
path: root/llvm/docs/MakefileGuide.html
diff options
context:
space:
mode:
authorPeter Collingbourne <peter@pcc.me.uk>2010-10-22 12:54:34 +0000
committerPeter Collingbourne <peter@pcc.me.uk>2010-10-22 12:54:34 +0000
commita92b66ec47085fdd398500b415d5998e15fbee96 (patch)
tree9f8e28c5677b2c1debd3587b2a74524da636e33b /llvm/docs/MakefileGuide.html
parentc7e0dcf13fe6d2e3bb0e2642c5001300edb413dd (diff)
downloadbcm5719-llvm-a92b66ec47085fdd398500b415d5998e15fbee96.tar.gz
bcm5719-llvm-a92b66ec47085fdd398500b415d5998e15fbee96.zip
Standardise all build-mode affecting {EN,DIS}ABLE_* make options to
test equality to 1, and fix/update documentation to reflect this llvm-svn: 117094
Diffstat (limited to 'llvm/docs/MakefileGuide.html')
-rw-r--r--llvm/docs/MakefileGuide.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/docs/MakefileGuide.html b/llvm/docs/MakefileGuide.html
index a66f78a37c1..2ef0954a8bb 100644
--- a/llvm/docs/MakefileGuide.html
+++ b/llvm/docs/MakefileGuide.html
@@ -640,18 +640,18 @@
generate dependencies when running the compiler. Use of this feature is
discouraged and it may be removed at a later date.</dd>
<dt><a name="ENABLE_OPTIMIZED"><tt>ENABLE_OPTIMIZED</tt></a></dt>
- <dd>If set to any value, causes the build to generate optimized objects,
+ <dd>If set to 1, causes the build to generate optimized objects,
libraries and executables. This alters the flags specified to the compilers
and linkers. Generally debugging won't be a fun experience with an optimized
build.</dd>
<dt><a name="ENABLE_PROFILING"><tt>ENABLE_PROFILING</tt></a></dt>
- <dd>If set to any value, causes the build to generate both optimized and
+ <dd>If set to 1, causes the build to generate both optimized and
profiled objects, libraries and executables. This alters the flags specified
to the compilers and linkers to ensure that profile data can be collected
from the tools built. Use the <tt>gprof</tt> tool to analyze the output from
the profiled tools (<tt>gmon.out</tt>).</dd>
<dt><a name="DISABLE_ASSERTIONS"><tt>DISABLE_ASSERTIONS</tt></a></dt>
- <dd>If set to any value, causes the build to disable assertions, even if
+ <dd>If set to 1, causes the build to disable assertions, even if
building a debug or profile build. This will exclude all assertion check
code from the build. LLVM will execute faster, but with little help when
things go wrong.</dd>
OpenPOWER on IntegriCloud