Suppress noisy pointer signed-ness warnings on x86-64.

This commit is contained in:
Shinichiro Hamaji 2009-03-16 02:47:52 +09:00 committed by grischka
parent 006c907da7
commit 7db1e69df2

View File

@ -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