[llvm-commits] CVS: llvm/docs/GettingStarted.html MakefileGuide.html

Reid Spencer reid at x10sys.com
Sun Apr 9 16:45:50 PDT 2006



Changes in directory llvm/docs:

GettingStarted.html updated: 1.127 -> 1.128
MakefileGuide.html updated: 1.30 -> 1.31
---
Log message:

Update docs for ENABLE_ASSERTIONS -> DISABLE_ASSERTIONS


---
Diffs of the changes:  (+9 -8)

 GettingStarted.html |    6 +++---
 MakefileGuide.html  |   11 ++++++-----
 2 files changed, 9 insertions(+), 8 deletions(-)


Index: llvm/docs/GettingStarted.html
diff -u llvm/docs/GettingStarted.html:1.127 llvm/docs/GettingStarted.html:1.128
--- llvm/docs/GettingStarted.html:1.127	Mon Mar 20 19:10:57 2006
+++ llvm/docs/GettingStarted.html	Sun Apr  9 18:45:37 2006
@@ -955,9 +955,9 @@
   Perform a Release (Optimized) build.
   <p>
 
-  <dt><tt>gmake ENABLE_OPTIMIZED=1 ENABLE_ASSERTIONS=1</tt>
+  <dt><tt>gmake ENABLE_OPTIMIZED=1 DISABLE_ASSERTIONS=1</tt>
   <dd>
-  Perform a Release (Optimized) build with assertions enabled.
+  Perform a Release (Optimized) build without assertions enabled.
   <p>
 
   <dt><tt>gmake ENABLE_PROFILING=1</tt>
@@ -1551,7 +1551,7 @@
   <a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
   <a href="http://llvm.x10sys.com/rspencer/">Reid Spencer</a><br>
   <a href="http://llvm.org">The LLVM Compiler Infrastructure</a><br>
-  Last modified: $Date: 2006/03/21 01:10:57 $
+  Last modified: $Date: 2006/04/09 23:45:37 $
 </address>
 </body>
 </html>


Index: llvm/docs/MakefileGuide.html
diff -u llvm/docs/MakefileGuide.html:1.30 llvm/docs/MakefileGuide.html:1.31
--- llvm/docs/MakefileGuide.html:1.30	Thu Mar 23 00:19:04 2006
+++ llvm/docs/MakefileGuide.html	Sun Apr  9 18:45:38 2006
@@ -632,10 +632,11 @@
     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="ENABLE_ASSERTIONS"><tt>ENABLE_ASSERTIONS</tt></a></dt>
-    <dd>If set to any value, causes the build to enable assertions, even if 
-    building a release or profile build.  This is slower than a release build 
-    but far faster than a debug build.</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 
+    building a release 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>
     <dt><a name="EXPERIMENTAL_DIRS"><tt>EXPERIMENTAL_DIRS</tt></a></dt>
     <dd>Specify a set of directories that should be built, but if they fail, it
     should not cause the build to fail. Note that this should only be used 
@@ -999,7 +1000,7 @@
 
   <a href="mailto:rspencer at x10sys.com">Reid Spencer</a><br>
   <a href="http://llvm.org">The LLVM Compiler Infrastructure</a><br>
-  Last modified: $Date: 2006/03/23 06:19:04 $
+  Last modified: $Date: 2006/04/09 23:45:38 $
 </address>
 </body>
 </html>






More information about the llvm-commits mailing list