blob: 4e05af7eb5f3326f7a58521eca1392ccd3f56358 [file] [log] [blame]
Rob Landley28964802008-01-19 17:08:39 -06001# Toybox configuration file.
2
3# This sets environment variables used by scripts/make.sh
4
5# A synonym.
6[ -z "$CROSS_COMPILE" ] && CROSS_COMPILE="$CROSS"
7
8[ -z "$CFLAGS" ] && CFLAGS="-Wall -Wundef -Wno-char-subscripts"
9CFLAGS="$CFLAGS -funsigned-char"
10[ -z "$OPTIMIZE" ] && OPTIMIZE="-Os -ffunction-sections -fdata-sections -Wl,--gc-sections"
Rob Landley344c2672012-03-03 10:56:11 -060011[ -z "$CC" ] && CC=cc
12[ -z "$STRIP" ] && STRIP=strip
Rob Landley28964802008-01-19 17:08:39 -060013[ -z "$HOSTCC" ] && HOSTCC=gcc