here comes the CMAKE part on LLVM_COMPACT_SENTINELS; see also r78628 and r78661

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78803 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Gabor Greif 2009-08-12 08:37:37 +00:00
parent a7ac47cee1
commit 9befba80be
2 changed files with 10 additions and 1 deletions

View File

@ -94,6 +94,12 @@ else()
endif() endif()
endif() endif()
if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" AND NOT LLVM_ENABLE_ASSERTIONS )
set( LLVM_COMPACT_SENTINELS 1 )
else( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" AND NOT LLVM_ENABLE_ASSERTIONS )
set( LLVM_COMPACT_SENTINELS 0 )
endif( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" AND NOT LLVM_ENABLE_ASSERTIONS )
if( LLVM_TARGETS_TO_BUILD STREQUAL "all" ) if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} ) set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
endif() endif()
@ -102,7 +108,7 @@ set(LLVM_ENUM_TARGETS "")
foreach(c ${LLVM_TARGETS_TO_BUILD}) foreach(c ${LLVM_TARGETS_TO_BUILD})
list(FIND LLVM_ALL_TARGETS ${c} idx) list(FIND LLVM_ALL_TARGETS ${c} idx)
if( idx LESS 0 ) if( idx LESS 0 )
message(FATAL_ERROR "The target `${c}' does not exists. message(FATAL_ERROR "The target `${c}' does not exist.
It should be one of\n${LLVM_ALL_TARGETS}") It should be one of\n${LLVM_ALL_TARGETS}")
else() else()
set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${c})\n") set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${c})\n")

View File

@ -440,6 +440,9 @@
/* Define to 1 if you have the <windows.h> header file. */ /* Define to 1 if you have the <windows.h> header file. */
#cmakedefine HAVE_WINDOWS_H ${HAVE_WINDOWS_H} #cmakedefine HAVE_WINDOWS_H ${HAVE_WINDOWS_H}
/* Define to 1 for ilist sentinel compaction */
#cmakedefine LLVM_COMPACT_SENTINELS ${LLVM_COMPACT_SENTINELS}
/* Installation directory for binary executables */ /* Installation directory for binary executables */
#undef LLVM_BINDIR #undef LLVM_BINDIR