1
0
mirror of https://git.tukaani.org/xz.git synced 2025-03-03 07:00:53 +00:00

Revert "Build: Temporarily disable CRC CLMUL to silence OSS Fuzz"

This reverts commit 9f1a6d6f9a258886933a22239a5b81af34b28199.
This commit is contained in:
Lasse Collin 2024-06-10 15:37:49 +03:00
parent 2178acf8a4
commit ead4d15199

View File

@ -373,12 +373,10 @@ AM_CONDITIONAL(COND_ASM_X86, test "x$enable_assembler" = xx86)
# CLMUL CRC #
#############
# FIXME: Turn it back on by default once the code has been revised
# to not cause false alarms in sanitizers and thus in OSS Fuzz.
AC_ARG_ENABLE([clmul-crc], AS_HELP_STRING([--disable-clmul-crc],
[Do not use carryless multiplication for CRC calculation
even if support for it is detected.]),
[], [enable_clmul_crc=no])
[], [enable_clmul_crc=yes])
############################