Send status messages to standard output

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2013-08-12 14:56:40 -07:00
parent ca4c37528f
commit 7778541422

View file

@ -10,7 +10,7 @@ set(LEAN_EXTRA_LINKER_FLAGS "")
# Cygwin: Windows does not support ulimit -s unlimited. So, we reserve a lot of stack space: 100Mb # Cygwin: Windows does not support ulimit -s unlimited. So, we reserve a lot of stack space: 100Mb
if(${CYGWIN}) if(${CYGWIN})
message("-- CYGWIN detected") message(STATUS "-- CYGWIN detected")
set(LEAN_EXTRA_LINKER_FLAGS "${LEAN_EXTRA_LINKER_FLAGS} -Wl,--stack,104857600") set(LEAN_EXTRA_LINKER_FLAGS "${LEAN_EXTRA_LINKER_FLAGS} -Wl,--stack,104857600")
endif() endif()
@ -59,7 +59,7 @@ if("${tcmalloc}" MATCHES "ON")
set(EXTRA_LIBS ${EXTRA_LIBS} ${TCMALLOC_LIBRARIES}) set(EXTRA_LIBS ${EXTRA_LIBS} ${TCMALLOC_LIBRARIES})
endif() endif()
else() else()
message("-- Using standard malloc.") message(STATUS "-- Using standard malloc.")
endif() endif()
include_directories(${LEAN_SOURCE_DIR}/util) include_directories(${LEAN_SOURCE_DIR}/util)