Send status messages to standard output
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
ca4c37528f
commit
7778541422
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
if(${CYGWIN})
|
||||
message("-- CYGWIN detected")
|
||||
message(STATUS "-- CYGWIN detected")
|
||||
set(LEAN_EXTRA_LINKER_FLAGS "${LEAN_EXTRA_LINKER_FLAGS} -Wl,--stack,104857600")
|
||||
endif()
|
||||
|
||||
|
@ -59,7 +59,7 @@ if("${tcmalloc}" MATCHES "ON")
|
|||
set(EXTRA_LIBS ${EXTRA_LIBS} ${TCMALLOC_LIBRARIES})
|
||||
endif()
|
||||
else()
|
||||
message("-- Using standard malloc.")
|
||||
message(STATUS "-- Using standard malloc.")
|
||||
endif()
|
||||
|
||||
include_directories(${LEAN_SOURCE_DIR}/util)
|
||||
|
|
Loading…
Reference in a new issue