mirror of
https://github.com/opencv/opencv.git
synced 2026-07-31 08:13:04 +04:00
cmake: support multiple CPU targets
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
#include <nmmintrin.h>
|
||||
#ifndef _MSC_VER
|
||||
#include <popcntintrin.h>
|
||||
#endif
|
||||
int main() {
|
||||
int i = _mm_popcnt_u64(1);
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user