build: fix build with -mno-ssse3

Avoid the following error with -mno-ssse3:
 inlining failed in call to 'always_inline' '_mm_shuffle_epi8':
 target specific option mismatch

* configure.ac: Ensure we use ssse3 specific code when
checking whether to enable the pclmul cksum implementation.
This commit is contained in:
Jaroslav Skarvada 2023-04-26 13:48:41 +01:00 committed by Pádraig Brady
parent 3fb0cc80fa
commit b16553cdad

View File

@ -578,6 +578,7 @@ AC_COMPILE_IFELSE(
{
__m128i a, b;
a = _mm_clmulepi64_si128 (a, b, 0x00);
a = _mm_shuffle_epi8 (a, b);
return 1;
}
]])