mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 10:31:54 +01:00
c28be510d1
Compiles to same vector code, just a bit simplier. vec_crc32.c is now identical to upstream (https://github.com/antonblanchard/crc32-vpmsum/). C code by Rogerio Alves <rogealve@br.ibm.com> This implemention has been tested on big endian too. Signed-off-by: Daniel Black <daniel@linux.ibm.com>
5 lines
164 B
CMake
5 lines
164 B
CMake
IF(CMAKE_SYSTEM_PROCESSOR MATCHES "ppc64")
|
|
SET(HAVE_CRC32_VPMSUM 1)
|
|
SET(CRC32_VPMSUM_LIBRARY crc32-vpmsum)
|
|
ADD_SUBDIRECTORY(extra/crc32-vpmsum)
|
|
ENDIF()
|