mirror of
https://https.git.savannah.gnu.org/git/coreutils.git
synced 2026-01-26 15:29:07 +00:00
build: fix compilation error on CentOS 8 Stream
* configure.ac (USE_AVX512_CRC32): Set to false if the function _mm512_set_epi8 does not exist.
This commit is contained in:
parent
700690ebc3
commit
354cf4a410
@ -727,6 +727,10 @@ AC_LINK_IFELSE(
|
||||
main (void)
|
||||
{
|
||||
__m512i a, b;
|
||||
a = _mm512_set_epi8 (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||||
a = _mm512_clmulepi64_epi128 (a, b, 0x00);
|
||||
a = _mm512_shuffle_epi8 (a, b);
|
||||
return __builtin_cpu_supports ("avx512bw") &&
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user