mirror of
https://github.com/opencv/opencv.git
synced 2025-06-07 09:25:45 +08:00
Disable fp16 instructions detection on Windows ARM64 because of build issues #25052.
This commit is contained in:
parent
a024d9e996
commit
1577ae0839
@ -11,7 +11,8 @@ int test()
|
||||
_mm_storel_epi64((__m128i*)dst, v_dst);
|
||||
return (int)dst[0];
|
||||
}
|
||||
#elif (defined __GNUC__ && (defined __arm__ || defined __aarch64__)) || (defined _MSC_VER && defined _M_ARM64)
|
||||
#elif (defined __GNUC__ && (defined __arm__ || defined __aarch64__)) /*|| (defined _MSC_VER && defined _M_ARM64)*/
|
||||
// Windows + ARM64 case disabled: https://github.com/opencv/opencv/issues/25052
|
||||
#include "arm_neon.h"
|
||||
int test()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user