From: Jens Axboe Date: Mon, 22 Dec 2008 10:29:50 +0000 (+0100) Subject: Include crc32c and crc32c-intel checksums in FreeBSD/Solaris X-Git-Tag: fio-1.24~21 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=a6cee43d4e9f2163bca89bf25c8d529128ebc905 Include crc32c and crc32c-intel checksums in FreeBSD/Solaris Signed-off-by: Jens Axboe --- diff --git a/Makefile.FreeBSD b/Makefile.FreeBSD index 6b41db15..ec67dd16 100644 --- a/Makefile.FreeBSD +++ b/Makefile.FreeBSD @@ -11,6 +11,8 @@ OBJS = gettime.o fio.o ioengines.o init.o stat.o log.o time.o filesetup.o \ OBJS += crc/crc7.o OBJS += crc/crc16.o OBJS += crc/crc32.o +OBJS += crc/crc32c.o +OBJS += crc/crc32c-intel.o OBJS += crc/crc64.o OBJS += crc/sha256.o OBJS += crc/sha512.o diff --git a/Makefile.solaris b/Makefile.solaris index fd1029bc..27adf1bd 100644 --- a/Makefile.solaris +++ b/Makefile.solaris @@ -9,6 +9,8 @@ OBJS = gettime.o fio.o ioengines.o init.o stat.o log.o time.o filesetup.o \ OBJS += crc/crc7.o OBJS += crc/crc16.o OBJS += crc/crc32.o +OBJS += crc/crc32c.o +OBJS += crc/crc32c-intel.o OBJS += crc/crc64.o OBJS += crc/sha256.o OBJS += crc/sha512.o