Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个使用_mm_crc32_u64. 为此,我包含了头文件smmintrin.h,并且在-msse4.1使用gcc. 但是,当我编译它时,我得到了undefined reference to _mm_crc32_u64错误。这里有什么问题?
_mm_crc32_u64
smmintrin.h
-msse4.1
gcc
undefined reference to _mm_crc32_u64
我这样做了,它奏效了!所以基本上我不得不使用 msse4.2 而不是 msse4.1。
gcc44 crc.c -msse4.2