diff --git a/cmake/toolchains/Toolchain-native.cmake b/cmake/toolchains/Toolchain-native.cmake index 6beee911d3..888c73a6d8 100644 --- a/cmake/toolchains/Toolchain-native.cmake +++ b/cmake/toolchains/Toolchain-native.cmake @@ -3,7 +3,7 @@ foreach(tool nm ld) string(TOUPPER ${tool} TOOL) find_program(${TOOL} ${tool}) if(NOT ${TOOL}) - #message(FATAL_ERROR "could not find ${tool}") + message(FATAL_ERROR "could not find ${tool}") endif() endforeach()