diff options
author | David Schleef <ds@schleef.org> | 2001-05-25 23:28:20 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2001-05-25 23:28:20 +0000 |
commit | 4c6a1df6f5fde0dbc8a6efa6e7938c094c2b7da0 (patch) | |
tree | 6c5fbccdff4eb0dff162453a84f5deffe0cf4f69 /test | |
parent | fa4500f154c288f72622f87333b8bb01730d6153 (diff) | |
download | uClibc-alpine-4c6a1df6f5fde0dbc8a6efa6e7938c094c2b7da0.tar.bz2 uClibc-alpine-4c6a1df6f5fde0dbc8a6efa6e7938c094c2b7da0.tar.xz |
Added -Wall
Diffstat (limited to 'test')
-rw-r--r-- | test/Rules.mak | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Rules.mak b/test/Rules.mak index 1700195aa..00abb880f 100644 --- a/test/Rules.mak +++ b/test/Rules.mak @@ -22,6 +22,9 @@ STRIPTOOL=strip # Check if 'ls -sh' works or not LSFLAGS = -l +# turn all the warnings on +WARNINGS=-Wall + # use '-Os' optimization if available, else use -O2 OPTIMIZATION = $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \ then echo "-Os"; else echo "-O2" ; fi) |