Skip to content

Commit 726f0ad

Browse files
committed
cmake(3rdparty): drop simd warning in libjpeg-turbo
1 parent b16f76e commit 726f0ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

3rdparty/libjpeg-turbo/src/simd/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
macro(simd_fail message)
2-
message(WARNING "${message}. Performance will suffer.")
2+
message(STATUS "libjpeg-turbo(SIMD): ${message}. Performance will suffer.")
33
set(WITH_SIMD 0 PARENT_SCOPE)
44
endmacro()
55

@@ -361,7 +361,7 @@ if(NOT NEON_INTRINSICS)
361361
-x assembler-with-cpp -c ${CMAKE_CURRENT_BINARY_DIR}/gastest.S
362362
RESULT_VARIABLE RESULT OUTPUT_VARIABLE OUTPUT ERROR_VARIABLE ERROR)
363363
if(NOT RESULT EQUAL 0)
364-
message(WARNING "GAS appears to be broken. Using the full Neon SIMD intrinsics implementation.")
364+
message(STATUS "libjpeg-turbo(SIMD): GAS appears to be broken. Using the full Neon SIMD intrinsics implementation.")
365365
set(NEON_INTRINSICS 1 CACHE INTERNAL "" FORCE)
366366
endif()
367367
endif()

0 commit comments

Comments
 (0)