Disable vectorscan-on-ARM for now

This commit is contained in:
Robert Schulze 2022-06-26 00:03:01 +02:00
parent 2c828338f4
commit 07f14c9bb2
No known key found for this signature in database
GPG Key ID: 26703B55FB13728A

View File

@ -1,9 +1,11 @@
# We use vectorscan, a portable and API/ABI-compatible drop-in replacement for hyperscan.
if (ARCH_AMD64 OR ARCH_AARCH64)
if (ARCH_AMD64)
option (ENABLE_VECTORSCAN "Enable vectorscan library" ${ENABLE_LIBRARIES})
endif()
# TODO: vectorscan supports ARM yet some tests involving cyrillic letters fail (PR #38171) ... needs further investigation
# TODO PPC should generally work but needs manual generation of ppc/config.h file on a PPC machine
if (NOT ENABLE_VECTORSCAN)