[llvm-commits] CVS: llvm/Makefile.config.in
Reid Spencer
reid at x10sys.com
Fri Apr 7 08:59:53 PDT 2006
Changes in directory llvm:
Makefile.config.in updated: 1.54 -> 1.55
---
Log message:
For PR723: http://llvm.cs.uiuc.edu/PR723 :
- Provide for the include of ENABLE_ASSERTIONS flag from the configuration.
- Enhance the documentation for ENABLE_OPTIMIZED
---
Diffs of the changes: (+8 -2)
Makefile.config.in | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
Index: llvm/Makefile.config.in
diff -u llvm/Makefile.config.in:1.54 llvm/Makefile.config.in:1.55
--- llvm/Makefile.config.in:1.54 Thu Apr 6 17:00:36 2006
+++ llvm/Makefile.config.in Fri Apr 7 10:59:41 2006
@@ -178,11 +178,17 @@
# These are options that can either be enabled here, or can be enabled on the
# make command line (ie, make ENABLE_PROFILING=1):
-# When ENABLE_OPTIMIZED is enabled, Release builds of all of the LLVM code are
-# turned on, and Debug builds are turned off.
+# When ENABLE_OPTIMIZED is enabled, LLVM code is optimized and output is put
+# into the "Release" directories. Otherwise, LLVM code is not optimized and
+# output is put in the "Debug" directories.
#ENABLE_OPTIMIZED = 1
@ENABLE_OPTIMIZED@
+# When ENABLE_ASSERTIONS is enabled, builds of all of the LLVM code will include
+# assertion checks, otherwise they are not included.
+#ENABLE_ASSERTIONS = 1
+ at ENABLE_ASSERTIONS@
+
# When DEBUG_RUNTIME is enabled, the runtime libraries will retain debug
# symbols.
#DEBUG_RUNTIME = 1
More information about the llvm-commits
mailing list