view configure @ 581:1e07220fd3b6

Probe available libraries to link --as-needed, avoiding "unknown libarary" errors.
author Rob Landley <rob@landley.net>
date Wed, 23 May 2012 21:54:16 -0500
parents 9bcc288a1c54
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