From 7bb3253a0545c551ff25cc66dddf914a6f4a2928 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sun, 4 Jan 2009 11:15:36 -0500 Subject: [PATCH] Silence the strict-aliasing warnings that older compilers emit. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 220eafa..4c1b516 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ cc-option = $(shell if test -z "`$(1) $(2) -S -o /dev/null -xc \ COMMONCFLAGS = -Wall -Os -MD -m32 -march=i386 -mregparm=3 \ -mpreferred-stack-boundary=2 -mrtd \ -ffreestanding -fwhole-program -fomit-frame-pointer \ - -fno-delete-null-pointer-checks + -fno-delete-null-pointer-checks -Wno-strict-aliasing COMMONCFLAGS += $(call cc-option,$(CC),-nopie,) COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector,) COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector-all,) -- 2.39.5