From f466577673ed9e61124f50fa59c351f16c27388e Mon Sep 17 00:00:00 2001 From: grischka Date: Thu, 13 Dec 2007 19:17:45 +0000 Subject: [PATCH] Disable singnedness warnings with newer gcc. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 65f9fd94..eda0889a 100644 --- a/Makefile +++ b/Makefile @@ -16,6 +16,7 @@ ifeq ($(GCC_MAJOR),2) CFLAGS+=-m386 -malign-functions=0 else CFLAGS+=-march=i386 -falign-functions=0 -fno-strict-aliasing +CFLAGS+=-Wno-pointer-sign -Wno-sign-compare endif DISAS=objdump -d -- 2.11.4.GIT