|
@@ -33,3 +33,21 @@ if (WITH_DOC)
|
|
add_subdirectory(doc)
|
|
add_subdirectory(doc)
|
|
endif (WITH_DOC)
|
|
endif (WITH_DOC)
|
|
|
|
|
|
|
|
+message(STATUS "********************************************")
|
|
|
|
+message(STATUS "********** ${PROJECT_NAME} build options : **********")
|
|
|
|
+message(STATUS "Memory space awareness: " ${WITH_MEMORY_SPACE_AWARENESS})
|
|
|
|
+message(STATUS "POSIX locking mechanisms: " ${HAVE_LOCKS})
|
|
|
|
+if(BLOCKS_ORGANIZATION STREQUAL "dll")
|
|
|
|
+ message(STATUS "Block organization: Doubly-Linked Lists")
|
|
|
|
+else(BLOCKS_ORGANIZATION STREQUAL "dll")
|
|
|
|
+ message(STATUS "Block organization: Singly-Linked Lists")
|
|
|
|
+endif(BLOCKS_ORGANIZATION STREQUAL "dll")
|
|
|
|
+message(STATUS "Predefined lists of fixed-sized blocks: " ${WITH_FIXED_LISTS})
|
|
|
|
+message(STATUS "Heap Ownership per Block: " ${WITH_OWNERSHIP})
|
|
|
|
+message(STATUS "Have statistics: " ${WITH_STATS})
|
|
|
|
+message(STATUS "Have knobs: " ${WITH_KNOBS})
|
|
|
|
+message(STATUS "Coalescing: " ${WITH_COALESCING})
|
|
|
|
+message(STATUS "Splitting: " ${WITH_SPLITTING})
|
|
|
|
+message(STATUS "Adaptivity: " ${WITH_ADAPTIVITY})
|
|
|
|
+message(STATUS "********************************************")
|
|
|
|
+
|