From 53d6bf40c1df1c6f274c391a034a21e01bf5dce8 Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Mon, 5 Nov 2012 01:59:33 +0000 Subject: [PATCH] Fix gcc 4.8 warning (strict aliasing violation). --- crypto/modes/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crypto/modes/Makefile b/crypto/modes/Makefile index 811969304f..566e8f795d 100644 --- a/crypto/modes/Makefile +++ b/crypto/modes/Makefile @@ -16,6 +16,8 @@ CFLAGS= $(INCLUDES) $(CFLAG) ASFLAGS= $(INCLUDES) $(ASFLAG) AFLAGS= $(ASFLAGS) +CFLAGS += -fno-strict-aliasing + GENERAL=Makefile TEST= APPS= -- 2.25.1