From a6cee43d4e9f2163bca89bf25c8d529128ebc905 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Mon, 22 Dec 2008 11:29:50 +0100 Subject: [PATCH] Include crc32c and crc32c-intel checksums in FreeBSD/Solaris Signed-off-by: Jens Axboe --- Makefile.FreeBSD | 2 ++ Makefile.solaris | 2 ++ 2 files changed, 4 insertions(+) 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 -- 2.25.1