From 7a42b82197648d7434c8e75a748f8b435cd4c735 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Sun, 23 Nov 2014 00:48:56 +0100 Subject: [PATCH] Added : -Wcast-align compilation option --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9843f5e..94cf4a9 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ CC := $(CC) CFLAGS ?= -O3 -CFLAGS += -I. -std=c99 -Wall -Wextra -Wundef -Wshadow -Wstrict-prototypes +CFLAGS += -I. -std=c99 -Wall -Wextra -Wundef -Wshadow -Wcast-align -Wstrict-prototypes # Define *.exe as extension for Windows systems