# HG changeset patch # User Pascal Bellard # Date 1275668394 -7200 # Node ID 6c404abdffee992289aac989ee6114e9965c4922 # Parent f018edfba6937c1433e43eddc5ada0858747b848 busybox-static: GCC 4.5.0 workaround diff -r f018edfba693 -r 6c404abdffee busybox-static/receipt --- a/busybox-static/receipt Fri Jun 04 18:06:46 2010 +0200 +++ b/busybox-static/receipt Fri Jun 04 18:19:54 2010 +0200 @@ -36,7 +36,8 @@ EOT cp ../stuff/$SOURCE-$VERSION.config .config make oldconfig - make && make install + # "CFLAGS=-O0" is a workaround for GCC 4.5.0 + make "CFLAGS=-O0" && make "CFLAGS=-O0" install echo "Chmod 4755 on busybox binary..." chmod 4755 _install/bin/busybox }