From ebf495006ed743258a1236ad979f0c4f246e1e6b Mon Sep 17 00:00:00 2001 From: Hugues Kamba Date: Wed, 26 May 2021 17:40:09 +0100 Subject: [PATCH] CMake: Remove forgotten debug message A debug message to display the selected toolchain was left in the main CMakeLists.txt file. This commit removes it. --- CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 10d4389f46..a7290a3b03 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -71,7 +71,6 @@ if(${CMAKE_CROSSCOMPILING}) mbed_set_cpu_core_definitions(mbed-core) if(${MBED_TOOLCHAIN_FILE_USED}) - message(STATUS ${MBED_TOOLCHAIN}) mbed_set_profile_options(mbed-core ${MBED_TOOLCHAIN}) mbed_set_c_lib(mbed-core ${MBED_C_LIB}) mbed_set_printf_lib(mbed-core ${MBED_PRINTF_LIB})