diff options
author | Rob Landley <rob@landley.net> | 2005-12-01 17:01:43 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2005-12-01 17:01:43 +0000 |
commit | 4a070d1460456117e4286734682ec6462499edfe (patch) | |
tree | a8560ffaf34fbfbcc046681061b29bba42a9c507 | |
parent | 1d589b2e2d6e9e0af719b481c7ef333bc73e2a7a (diff) | |
download | busybox-w32-4a070d1460456117e4286734682ec6462499edfe.tar.gz busybox-w32-4a070d1460456117e4286734682ec6462499edfe.tar.bz2 busybox-w32-4a070d1460456117e4286734682ec6462499edfe.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.
-rw-r--r-- | Rules.mak | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | ||
83 | WARNINGS=-Wall -Wstrict-prototypes -Wshadow | 83 | WARNINGS=-Wall -Wstrict-prototypes -Wshadow |
84 | CFLAGS=-I$(top_builddir)/include -I$(top_srcdir)/include -I$(srcdir) | 84 | CFLAGS=-I$(top_builddir)/include -I$(top_srcdir)/include -I$(srcdir) -funsigned-char |
85 | ARFLAGS=cru | 85 | ARFLAGS=cru |
86 | 86 | ||
87 | #-------------------------------------------------------- | 87 | #-------------------------------------------------------- |