From 726f0adde34f4a101d357c53899517a8da172224 Mon Sep 17 00:00:00 2001 From: Alexander Alekhin Date: Thu, 8 Dec 2022 16:44:45 +0000 Subject: [PATCH] cmake(3rdparty): drop simd warning in libjpeg-turbo --- 3rdparty/libjpeg-turbo/src/simd/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/3rdparty/libjpeg-turbo/src/simd/CMakeLists.txt b/3rdparty/libjpeg-turbo/src/simd/CMakeLists.txt index ec76491d5f2f..50553020041e 100644 --- a/3rdparty/libjpeg-turbo/src/simd/CMakeLists.txt +++ b/3rdparty/libjpeg-turbo/src/simd/CMakeLists.txt @@ -1,5 +1,5 @@ macro(simd_fail message) - message(WARNING "${message}. Performance will suffer.") + message(STATUS "libjpeg-turbo(SIMD): ${message}. Performance will suffer.") set(WITH_SIMD 0 PARENT_SCOPE) endmacro() @@ -361,7 +361,7 @@ if(NOT NEON_INTRINSICS) -x assembler-with-cpp -c ${CMAKE_CURRENT_BINARY_DIR}/gastest.S RESULT_VARIABLE RESULT OUTPUT_VARIABLE OUTPUT ERROR_VARIABLE ERROR) if(NOT RESULT EQUAL 0) - message(WARNING "GAS appears to be broken. Using the full Neon SIMD intrinsics implementation.") + message(STATUS "libjpeg-turbo(SIMD): GAS appears to be broken. Using the full Neon SIMD intrinsics implementation.") set(NEON_INTRINSICS 1 CACHE INTERNAL "" FORCE) endif() endif()