diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-03-21 07:34:27 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-03-21 07:34:27 +0000 |
commit | 1ca20a77476fb69e2472080ef6ba23c8c0ad12ad (patch) | |
tree | d1f07be4de0004fe5e30b44320e10285147e7944 /Makefile | |
parent | 7447642a47c6a0aefd05f4acf730950a510634cd (diff) | |
download | busybox-w32-1ca20a77476fb69e2472080ef6ba23c8c0ad12ad.tar.gz busybox-w32-1ca20a77476fb69e2472080ef6ba23c8c0ad12ad.tar.bz2 busybox-w32-1ca20a77476fb69e2472080ef6ba23c8c0ad12ad.zip |
A nice patch from Larry Doolittle that adds -Wshadow and
cleans up most of the now-revealed problems.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -108,7 +108,7 @@ STRIPTOOL = $(CROSS)strip | |||
108 | OPTIMIZATION := $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \ | 108 | OPTIMIZATION := $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \ |
109 | then echo "-Os"; else echo "-O2" ; fi) | 109 | then echo "-Os"; else echo "-O2" ; fi) |
110 | 110 | ||
111 | WARNINGS = -Wall | 111 | WARNINGS = -Wall -Wshadow |
112 | 112 | ||
113 | ARFLAGS = -r | 113 | ARFLAGS = -r |
114 | 114 | ||