File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -282,7 +282,12 @@ elseif(ARCHITECTURE_ARM)
282
282
if (C_MSVC)
283
283
try_run (RUN_NEON COMPILE_NEON "${CMAKE_BINARY_DIR} /tmp" "${TEST_DIR} /test_arm_neon.cxx" COMPILE_DEFINITIONS /O0)
284
284
else ()
285
- try_run (RUN_NEON COMPILE_NEON "${CMAKE_BINARY_DIR} /tmp" "${TEST_DIR} /test_arm_neon.cxx" COMPILE_DEFINITIONS -mfpu=neon -O0)
285
+ if (${CMAKE_HOST_SYSTEM_PROCESSOR} STREQUAL ${CMAKE_SYSTEM_PROCESSOR} )
286
+ try_run (RUN_NEON COMPILE_NEON "${CMAKE_BINARY_DIR} /tmp" "${TEST_DIR} /test_arm_neon.cxx" COMPILE_DEFINITIONS -mfpu=neon -O0)
287
+ else ()
288
+ try_compile (COMPILE_NEON "${CMAKE_BINARY_DIR} /tmp" "${TEST_DIR} /test_arm_neon.cxx" COMPILE_DEFINITIONS -mfpu=neon -O0)
289
+ set (RUN_NEON 0)
290
+ endif ()
286
291
endif ()
287
292
if (COMPILE_NEON AND RUN_NEON EQUAL 0)
288
293
set (HAS_NEON ON CACHE BOOL "Architecture has NEON SIMD enabled" )
You can’t perform that action at this time.
0 commit comments