diff options
author | Jonathan Clairembault <jonathan@clairembault.fr> | 2012-11-23 00:06:28 +0100 |
---|---|---|
committer | Jonathan Clairembault <jonathan@clairembault.fr> | 2012-11-23 00:06:28 +0100 |
commit | 939fa7408fa68af8568fd07de64a1606af0a0c06 (patch) | |
tree | 86dda7e86cadc1831dd5d69277ec926eb3d43f6b /configure | |
parent | a5f8c733d478a57ad03c0b0efe7fa995e4c364a2 (diff) | |
download | toybox-939fa7408fa68af8568fd07de64a1606af0a0c06.tar.gz |
Add expand command as described in POSIX-2008.
Erratum: Do not handle backspace.
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="-Wall -Wundef -Wno-char-subscripts" +[ -z "$CFLAGS" ] && CFLAGS="-g -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="-Os -ffunction-sections -fdata-sections -Wl,--gc-sections" +[ -z "$OPTIMIZE" ] && OPTIMIZE="-O0 -ffunction-sections -fdata-sections -Wl,--gc-sections" [ -z "$CC" ] && CC=cc [ -z "$STRIP" ] && STRIP=strip |