From: Konstantinos Margaritis Date: Wed, 17 Jan 2024 22:41:23 +0000 (+0200) Subject: add info message X-Git-Tag: vectorscan/5.4.12^2~75^2~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f6387e34da36b9c48a29b47f544c672c0cd1eb97;p=thirdparty%2Fvectorscan.git add info message --- diff --git a/CMakeLists.txt b/CMakeLists.txt index a9683205..d7e07a9a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -156,9 +156,11 @@ include (${CMAKE_MODULE_PATH}/sanitize.cmake) if (NOT FAT_RUNTIME) if (GNUCC_TUNE) + message(STATUS "GNUCC_TUNE is set") set(ARCH_C_FLAGS "-${ARCH_FLAG}=${GNUCC_ARCH} -${TUNE_FLAG}=${GNUCC_TUNE}") set(ARCH_CXX_FLAGS "-${ARCH_FLAG}=${GNUCC_ARCH} -${TUNE_FLAG}=${GNUCC_TUNE}") else() + message(STATUS "GNUCC_TUNE is not set") set(ARCH_C_FLAGS "-${ARCH_FLAG}=${GNUCC_ARCH} -mtune=${TUNE_FLAG} ${ARCH_C_FLAGS}") set(ARCH_CXX_FLAGS "-${ARCH_FLAG}=${GNUCC_ARCH} -mtune=${TUNE_FLAG} ${ARCH_CXX_FLAGS}") endif()