# 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 | |
[ -z "$STRIP" ] && STRIP=strip | |
[ -z "$HOSTCC" ] && HOSTCC=gcc |