1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 00:03:03 +04:00

cmake: fix CPU_BASELINE_FINAL filling

- remove duplicates
- restore "always on" missing entries
- fix FP16 detection on MSVC
This commit is contained in:
Alexander Alekhin
2018-04-26 16:03:45 +03:00
parent bf552fdb88
commit 56222f35bb
2 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
#include <stdio.h>
#if defined __F16C__ || (defined _MSC_VER && _MSC_VER >= 1700) || (defined __INTEL_COMPILER && defined __AVX__)
#if defined __F16C__ || (defined _MSC_VER && _MSC_VER >= 1700 && defined __AVX__) || (defined __INTEL_COMPILER && defined __AVX__)
#include <immintrin.h>
int test()
{