From: Robert Swiecki Date: Sat, 15 Jul 2017 13:04:25 +0000 (+0200) Subject: Makefile: add -D_FILE_OFFSET_BITS=64 to CFLAGS X-Git-Tag: 1.6~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cf3525dd495db90b5592ebfc9586d68d0a4a0324;p=platform%2Fupstream%2Fnsjail.git Makefile: add -D_FILE_OFFSET_BITS=64 to CFLAGS --- 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 \