From c1690a383221c853939245646dca04ea912416c6 Mon Sep 17 00:00:00 2001 From: Chris Mason Date: Tue, 24 Jul 2012 12:17:42 -0400 Subject: [PATCH] Switch to -O1 for optimizations to enable FORTIFY_SOURCE Signed-off-by: Chris Mason --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cd1203ce..c0aaa3d7 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ CC = gcc AM_CFLAGS = -Wall -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -CFLAGS = -g -O0 +CFLAGS = -g -O1 objects = ctree.o disk-io.o radix-tree.o extent-tree.o print-tree.o \ root-tree.o dir-item.o file-item.o inode-item.o \ inode-map.o crc32c.o rbtree.o extent-cache.o extent_io.o \