Mercurial > hg > toybox
view configure @ 453:8bc2fec2abf3
Added tag 0.2.0 for changeset e708e8933a50
author | Rob Landley <rob@landley.net> |
---|---|
date | Mon, 13 Feb 2012 07:46:36 -0600 |
parents | 51722949f2cc |
children | 9bcc288a1c54 |
line wrap: on
line source
# Toybox configuration file. # This sets environment variables used by scripts/make.sh # A synonym. [ -z "$CROSS_COMPILE" ] && CROSS_COMPILE="$CROSS" [ -z "$CFLAGS" ] && CFLAGS="-Wall -Wundef -Wno-char-subscripts" CFLAGS="$CFLAGS -funsigned-char" [ -z "$OPTIMIZE" ] && OPTIMIZE="-Os -ffunction-sections -fdata-sections -Wl,--gc-sections" [ -z "$CC" ] && CC="cc" CC="${CROSS_COMPILE}${CC}" [ -z "$STRIP" ] && STRIP="${CROSS_COMPILE}strip" [ -z "$HOSTCC" ] && HOSTCC=gcc