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

Chris Lattner lattner at cs.uiuc.edu
Mon Mar 20 17:11:08 PST 2006



Changes in directory llvm/docs:

GettingStarted.html updated: 1.126 -> 1.127
MakefileGuide.html updated: 1.28 -> 1.29
---
Log message:

Document ENABLE_ASSERTIONS=1


---
Diffs of the changes:  (+11 -2)

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


Index: llvm/docs/GettingStarted.html
diff -u llvm/docs/GettingStarted.html:1.126 llvm/docs/GettingStarted.html:1.127
--- llvm/docs/GettingStarted.html:1.126	Mon Mar 13 23:39:39 2006
+++ llvm/docs/GettingStarted.html	Mon Mar 20 19:10:57 2006
@@ -955,6 +955,11 @@
   Perform a Release (Optimized) build.
   <p>
 
+  <dt><tt>gmake ENABLE_OPTIMIZED=1 ENABLE_ASSERTIONS=1</tt>
+  <dd>
+  Perform a Release (Optimized) build with assertions enabled.
+  <p>
+
   <dt><tt>gmake ENABLE_PROFILING=1</tt>
   <dd>
   Perform a Profiling build.
@@ -1546,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/14 05:39:39 $
+  Last modified: $Date: 2006/03/21 01:10:57 $
 </address>
 </body>
 </html>


Index: llvm/docs/MakefileGuide.html
diff -u llvm/docs/MakefileGuide.html:1.28 llvm/docs/MakefileGuide.html:1.29
--- llvm/docs/MakefileGuide.html:1.28	Mon Mar 13 23:39:39 2006
+++ llvm/docs/MakefileGuide.html	Mon Mar 20 19:10:57 2006
@@ -632,6 +632,10 @@
     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="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 
@@ -991,7 +995,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/14 05:39:39 $
+  Last modified: $Date: 2006/03/21 01:10:57 $
 </address>
 
 </body>






More information about the llvm-commits mailing list