diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-04-07 15:59:41 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-04-07 15:59:41 +0000 |
commit | c4329cf5059a7caedc45d77e6ee80e92b8123394 (patch) | |
tree | 5e1c483a1f0e415fa188ae9d66e0b381049a12b8 /Makefile.config.in | |
parent | e22f3c004a04806dbe45936ab0b5e48e6c5bc016 (diff) |
For PR723:
- Provide for the include of ENABLE_ASSERTIONS flag from the configuration.
- Enhance the documentation for ENABLE_OPTIMIZED
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27486 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.config.in')
-rw-r--r-- | Makefile.config.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile.config.in b/Makefile.config.in index ad6be2bb75..fbb3475605 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -178,11 +178,17 @@ OBJ_ROOT := . # 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 +@ENABLE_ASSERTIONS@ + # When DEBUG_RUNTIME is enabled, the runtime libraries will retain debug # symbols. #DEBUG_RUNTIME = 1 |