Merge pull request #20729 from MikaelUrankar:3.4

pull/20742/head
Alexander Alekhin 3 years ago
commit 998406d20e
  1. 4
      modules/core/src/system.cpp

@ -533,7 +533,7 @@ struct HWFeatures
} }
#endif // CV_CPUID_X86 #endif // CV_CPUID_X86
#if defined __ANDROID__ || defined __linux__ #if defined __ANDROID__ || defined __linux__ || defined __FreeBSD__
#ifdef __aarch64__ #ifdef __aarch64__
have[CV_CPU_NEON] = true; have[CV_CPU_NEON] = true;
have[CV_CPU_FP16] = true; have[CV_CPU_FP16] = true;
@ -559,7 +559,7 @@ struct HWFeatures
CV_LOG_INFO(NULL, "- FP16 instructions is NOT enabled via build flags"); CV_LOG_INFO(NULL, "- FP16 instructions is NOT enabled via build flags");
#endif #endif
#endif #endif
#elif defined __arm__ #elif defined __arm__ && !defined __FreeBSD__
int cpufile = open("/proc/self/auxv", O_RDONLY); int cpufile = open("/proc/self/auxv", O_RDONLY);
if (cpufile >= 0) if (cpufile >= 0)

Loading…
Cancel
Save