mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-02-20 06:12:14 +02:00
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:
committed by
Pádraig Brady
parent
3fb0cc80fa
commit
b16553cdad
@@ -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;
|
||||
}
|
||||
]])
|
||||
|
||||
Reference in New Issue
Block a user