forked from OSchip/llvm-project
For PR723:
- Provide for the include of ENABLE_ASSERTIONS flag from the configuration. - Enhance the documentation for ENABLE_OPTIMIZED llvm-svn: 27486
This commit is contained in:
parent
754cfecd59
commit
080eb0b3ff
|
@ -178,11 +178,17 @@ OBJ_ROOT := .
|
||||||
# These are options that can either be enabled here, or can be enabled on the
|
# These are options that can either be enabled here, or can be enabled on the
|
||||||
# make command line (ie, make ENABLE_PROFILING=1):
|
# make command line (ie, make ENABLE_PROFILING=1):
|
||||||
|
|
||||||
# When ENABLE_OPTIMIZED is enabled, Release builds of all of the LLVM code are
|
# When ENABLE_OPTIMIZED is enabled, LLVM code is optimized and output is put
|
||||||
# turned on, and Debug builds are turned off.
|
# into the "Release" directories. Otherwise, LLVM code is not optimized and
|
||||||
|
# output is put in the "Debug" directories.
|
||||||
#ENABLE_OPTIMIZED = 1
|
#ENABLE_OPTIMIZED = 1
|
||||||
@ENABLE_OPTIMIZED@
|
@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
|
# When DEBUG_RUNTIME is enabled, the runtime libraries will retain debug
|
||||||
# symbols.
|
# symbols.
|
||||||
#DEBUG_RUNTIME = 1
|
#DEBUG_RUNTIME = 1
|
||||||
|
|
Loading…
Reference in New Issue