From c48e08a378a265dd8ba3df8f7a62116244539421 Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Mon, 25 Jul 2016 16:26:38 -0700 Subject: [PATCH] Add -fno-strict-aliasing We modify the same memory through pointers of different types all the live long day. Signed-off-by: Zach Brown --- utils/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/Makefile b/utils/Makefile index aad55eed..71db96e8 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -1,4 +1,5 @@ -CFLAGS := -Wall -O2 -Werror -D_FILE_OFFSET_BITS=64 -g -mrdrnd -msse4.2 +CFLAGS := -Wall -O2 -Werror -D_FILE_OFFSET_BITS=64 -g -mrdrnd -msse4.2 \ + -fno-strict-aliasing BIN := src/scoutfs OBJ := $(patsubst %.c,%.o,$(wildcard src/*.c))