From 5a7f4f7899d5b6ee23069f61b97708bc1ab83364 Mon Sep 17 00:00:00 2001 From: Zygo Blaxell Date: Thu, 26 Jan 2017 22:08:02 -0500 Subject: [PATCH] makeflags: fix missing -D_FILE_OFFSET_BITS=64 in comment Interesting things happen when blindly swapping the release-build CCFLAGS with the debug-build commented-out CCFLAGS. None of these things that happen are good. Signed-off-by: Zygo Blaxell --- makeflags | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makeflags b/makeflags index d1f6dcf..f5983cb 100644 --- a/makeflags +++ b/makeflags @@ -1,4 +1,4 @@ CCFLAGS = -Wall -Wextra -Werror -O3 -march=native -I../include -ggdb -fpic -D_FILE_OFFSET_BITS=64 -# CCFLAGS = -Wall -Wextra -Werror -O0 -I../include -ggdb -fpic +# CCFLAGS = -Wall -Wextra -Werror -O0 -I../include -ggdb -fpic -D_FILE_OFFSET_BITS=64 CFLAGS = $(CCFLAGS) -std=c99 CXXFLAGS = $(CCFLAGS) -std=c++11 -Wold-style-cast