diff options
author | Rob Landley <rob@landley.net> | 2013-01-13 13:48:25 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2013-01-13 13:48:25 -0600 |
commit | bccb6db20d59066455cb7bbcf14729bc71abbc71 (patch) | |
tree | cc769c6c515a1d57379fdfa0a39ab890419b256f /configure | |
parent | ae6a84bbee8b051f817bd4d0464ec95d1d1355a6 (diff) | |
download | toybox-bccb6db20d59066455cb7bbcf14729bc71abbc71.tar.gz |
Revert some debug code accidentally checked in at commit 715.
Diffstat (limited to 'configure')
-rw-r--r-- | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,11 +4,11 @@ # A synonym. [ -z "$CROSS_COMPILE" ] && CROSS_COMPILE="$CROSS" -[ -z "$CFLAGS" ] && CFLAGS="-g -Wall -Wundef -Wno-char-subscripts" +[ -z "$CFLAGS" ] && CFLAGS="-Wall -Wundef -Wno-char-subscripts" # Required for our expected ABI. we're 8-bit clean thus "char" must be unsigned. CFLAGS="$CFLAGS -funsigned-char" -[ -z "$OPTIMIZE" ] && OPTIMIZE="-O0 -ffunction-sections -fdata-sections -Wl,--gc-sections" +[ -z "$OPTIMIZE" ] && OPTIMIZE="-Os -ffunction-sections -fdata-sections -Wl,--gc-sections" [ -z "$CC" ] && CC=cc [ -z "$STRIP" ] && STRIP=strip |