X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=Makefile;h=673107f0d1dffb9a9c58719ba52fab2e865d60e2;hp=8cce80ffd634b22c74b065204281e50424918d77;hb=93bcfd20e37cef8cec350fe06d3a086724c9f257;hpb=16de1bf91ca80e62ce257a24cae471fab140bbe0 diff --git a/Makefile b/Makefile index 8cce80ff..673107f0 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ PROGS = fio SCRIPTS = fio_generate_plots UNAME := $(shell uname) -SOURCE = gettime.c fio.c ioengines.c init.c stat.c log.c time.c filesetup.c \ +SOURCE := gettime.c fio.c ioengines.c init.c stat.c log.c time.c filesetup.c \ eta.c verify.c memory.c io_u.c parse.c mutex.c options.c \ rbtree.c smalloc.c filehash.c profile.c debug.c lib/rand.c \ lib/num2str.c lib/ieee754.c $(wildcard crc/*.c) engines/cpu.c \ @@ -56,9 +56,11 @@ ifeq ($(UNAME), Darwin) LIBS += -lpthread -ldl endif ifneq (,$(findstring CYGWIN,$(UNAME))) - SOURCE += engines/windowsaio.c - LIBS += -lpthread -lrt -lpsapi - CFLAGS += -DPSAPI_VERSION=1 + SOURCE := $(filter-out engines/mmap.c,$(SOURCE)) + SOURCE += engines/windowsaio.c os/windows/posix.c + LIBS += -lpthread -lpsapi -lws2_32 + CFLAGS += -DPSAPI_VERSION=1 -Ios/windows/posix/include -Wno-format + CC = x86_64-w64-mingw32-gcc endif OBJS = $(SOURCE:.c=.o)