From cf3525dd495db90b5592ebfc9586d68d0a4a0324 Mon Sep 17 00:00:00 2001 From: Robert Swiecki Date: Sat, 15 Jul 2017 15:04:25 +0200 Subject: [PATCH] Makefile: add -D_FILE_OFFSET_BITS=64 to CFLAGS --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 64dd280..60d9b33 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ CC ?= gcc EXTRA_CFLAGS := $(CFLAGS) CFLAGS += -O2 -c -std=gnu11 \ - -D_GNU_SOURCE \ + -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 \ -Wformat -Wformat=2 -Wformat-security -fPIE \ -Wno-format-nonliteral \ -Wall -Wextra -Werror \