diff options
Diffstat (limited to 'configure')
-rw-r--r-- | configure | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/configure b/configure new file mode 100644 index 00000000..c9990f27 --- /dev/null +++ b/configure @@ -0,0 +1,13 @@ +# 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="${CROSS_COMPILE}gcc" +[ -z "$STRIP" ] && STRIP="${CROSS_COMPILE}strip" +[ -z "$HOSTCC" ] && HOSTCC=gcc |