From 7db1e69df29ff682cc9fcffd31ec11a50ac14ce7 Mon Sep 17 00:00:00 2001 From: Shinichiro Hamaji Date: Mon, 16 Mar 2009 02:47:52 +0900 Subject: [PATCH] Suppress noisy pointer signed-ness warnings on x86-64. --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 6ff3eb56..ba1a8a65 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,10 @@ include config.mak CFLAGS+=-g -Wall +ifeq ($(ARCH),x86-64) +CFLAGS+=-Wno-pointer-sign +endif + ifndef CONFIG_WIN32 LIBS=-lm ifndef CONFIG_NOLDL