aboutsummaryrefslogtreecommitdiff
path: root/Rules.mak
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-12-01 17:01:43 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-12-01 17:01:43 +0000
commit78cee71418f6017a281175895a2b59328106b063 (patch)
treea8560ffaf34fbfbcc046681061b29bba42a9c507 /Rules.mak
parentaf977c6e219aa2e3f45e3f6e73c9cedcf7bcc350 (diff)
downloadbusybox-w32-78cee71418f6017a281175895a2b59328106b063.tar.gz
busybox-w32-78cee71418f6017a281175895a2b59328106b063.tar.bz2
busybox-w32-78cee71418f6017a281175895a2b59328106b063.zip
Make char default to "unsigned" on all platforms so we have a consistent base
to deal with all the new gcc 4.0.2 warnings from. git-svn-id: svn://busybox.net/trunk/busybox@12615 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'Rules.mak')
-rw-r--r--Rules.mak4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rules.mak b/Rules.mak
index 537c3967c..b3ebeac1f 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -77,11 +77,11 @@ CFLAGS_EXTRA=$(subst ",, $(strip $(EXTRA_CFLAGS_OPTIONS)))
77# For other libraries, you are on your own. But these may (or may not) help... 77# For other libraries, you are on your own. But these may (or may not) help...
78#LDFLAGS+=-nostdlib 78#LDFLAGS+=-nostdlib
79#LIBRARIES:=$(LIBCDIR)/lib/libc.a -lgcc 79#LIBRARIES:=$(LIBCDIR)/lib/libc.a -lgcc
80#CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR) 80#CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR) -funsigned-char
81#GCCINCDIR:=$(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp") 81#GCCINCDIR:=$(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
82 82
83WARNINGS=-Wall -Wstrict-prototypes -Wshadow 83WARNINGS=-Wall -Wstrict-prototypes -Wshadow
84CFLAGS=-I$(top_builddir)/include -I$(top_srcdir)/include -I$(srcdir) 84CFLAGS=-I$(top_builddir)/include -I$(top_srcdir)/include -I$(srcdir) -funsigned-char
85ARFLAGS=cru 85ARFLAGS=cru
86 86
87#-------------------------------------------------------- 87#--------------------------------------------------------