summaryrefslogtreecommitdiff
path: root/n/avr/make
diff options
context:
space:
mode:
authorschodet2007-05-05 12:46:52 +0000
committerschodet2007-05-05 12:46:52 +0000
commit9c4fe1e49777722998720f2684e56b6c98be04bc (patch)
tree4a702b5c2e67c7284f73be037c01d263b62fd0ae /n/avr/make
parent35b25b9db1f618c51be20f8483a9e31a2949da84 (diff)
Fixed problems with avr-libc 1.4 and GCC 4.
Diffstat (limited to 'n/avr/make')
-rw-r--r--n/avr/make/Makefile.gen3
1 files changed, 2 insertions, 1 deletions
diff --git a/n/avr/make/Makefile.gen b/n/avr/make/Makefile.gen
index 5193e43..0fa9b98 100644
--- a/n/avr/make/Makefile.gen
+++ b/n/avr/make/Makefile.gen
@@ -3,7 +3,8 @@
# Flags
INCLUDES := -I$(BASE) -I$(BASE)/common
-CFLAGS := -g -Wall -W -Wundef -Wno-unused-parameter $(OPTIMIZE)
+CFLAGS := -g -Wall -W -Wundef -Wno-unused-parameter -Wno-pointer-sign \
+ $(OPTIMIZE)
ASFLAGS := -Wa,--gstabs
CPPFLAGS := $(DEFS) $(INCLUDES) -MMD \
$(if $(CONFIGFILE),$(CONFIGFILE:%=-include %))