Enable ISA-L for x86-64 only

This commit is contained in:
ltrk2 2023-08-21 06:05:04 -07:00
parent 763db4cc26
commit 933b05313e

View File

@ -1,6 +1,7 @@
option(ENABLE_ISAL_LIBRARY "Enable ISA-L library" ${ENABLE_LIBRARIES}) option(ENABLE_ISAL_LIBRARY "Enable ISA-L library" ${ENABLE_LIBRARIES})
if (ARCH_AARCH64)
# Disable ISA-L libray on aarch64. # ISA-L is only available for x86-64, so it shall be disabled for other platforms
if (NOT ARCH_AMD64)
set (ENABLE_ISAL_LIBRARY OFF) set (ENABLE_ISAL_LIBRARY OFF)
endif () endif ()