From b45571d42e9a08f45d18e368a754d4d82d047d29 Mon Sep 17 00:00:00 2001 From: Flole998 Date: Sat, 17 Dec 2022 19:46:41 +0100 Subject: [PATCH] Don't fail on strict aliasing violations --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 39748e32d..0ae3a19ca 100644 --- a/Makefile +++ b/Makefile @@ -51,6 +51,7 @@ CFLAGS += -Werror endif CFLAGS += -Wall -Wwrite-strings -Wno-deprecated-declarations CFLAGS += -Wmissing-prototypes +CFLAGS += -fno-strict-aliasing CFLAGS += -fms-extensions -funsigned-char CFLAGS += -D_FILE_OFFSET_BITS=64 CFLAGS += -I${BUILDDIR} -I${ROOTDIR}/src -I${ROOTDIR} -- 2.47.2