Mercurial > hg > toybox
view configure @ 512:9bcc288a1c54 0.2.1
Fix from Georgi Chorbadzhiyski to make cross compiling more robust.
author | Rob Landley <rob@landley.net> |
---|---|
date | Sat, 03 Mar 2012 10:56:11 -0600 |
parents | 51722949f2cc |
children | 150a6d81bd02 |
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 [ -z "$STRIP" ] && STRIP=strip [ -z "$HOSTCC" ] && HOSTCC=gcc