aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorShinichiro Hamaji <shinichiro.hamaji _at_ gmail.com>2009-03-16 02:47:52 +0900
committergrischka <grischka>2009-04-18 15:07:09 +0200
commit7db1e69df29ff682cc9fcffd31ec11a50ac14ce7 (patch)
tree6e4e936e9e2934df4d8ad5ae9473301aabb06ff3 /Makefile
parent006c907da7dfdd1ef9a5042fa0c60440656fad24 (diff)
downloadtinycc-7db1e69df29ff682cc9fcffd31ec11a50ac14ce7.tar.gz
tinycc-7db1e69df29ff682cc9fcffd31ec11a50ac14ce7.tar.bz2
Suppress noisy pointer signed-ness warnings on x86-64.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 6ff3eb5..ba1a8a6 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