Update of /cvsroot/blob/blob
In directory usw-pr-cvs1:/tmp/cvs-serv2889
Modified Files:
configure.in
Log Message:
Using -Os instead of -O2 makes the resulting blob binary up to 5% smaller
Index: configure.in
===================================================================
RCS file: /cvsroot/blob/blob/configure.in,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- configure.in 2001/09/27 21:38:17 1.10
+++ configure.in 2001/09/27 23:27:51 1.11
@@ -247,6 +247,9 @@
CFLAGS=`echo $CFLAGS | sed 's/\ *-g\ */\ /'`
LDFLAGS=`echo $LDFLAGS | sed 's/\ *-g\ */\ /'`
+dnl Change the "-O2" flag in "-Os"
+CFLAGS=`echo $CFLAGS | sed 's/-O2/-Os/'`
+
dnl Add some StrongARM specific flags
CFLAGS=`echo $CFLAGS -march=armv4 -mtune=strongarm1100 -fomit-frame-pointer -fno-builtin -mapcs-32 -nostdinc`
LDFLAGS=`echo $LDFLAGS -static -nostdlib`
|