annotate configure @ 442:ab2636878ba0

Use stpcpy() (posix 2008) for slight code shrink.
author Rob Landley <rob@landley.net>
date Wed, 08 Feb 2012 19:29:39 -0600
parents 51722949f2cc
children 9bcc288a1c54
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
233
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents:
diff changeset
1 # Toybox configuration file.
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents:
diff changeset
2
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents:
diff changeset
3 # This sets environment variables used by scripts/make.sh
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents:
diff changeset
4
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents:
diff changeset
5 # A synonym.
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents:
diff changeset
6 [ -z "$CROSS_COMPILE" ] && CROSS_COMPILE="$CROSS"
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents:
diff changeset
7
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents:
diff changeset
8 [ -z "$CFLAGS" ] && CFLAGS="-Wall -Wundef -Wno-char-subscripts"
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents:
diff changeset
9 CFLAGS="$CFLAGS -funsigned-char"
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents:
diff changeset
10 [ -z "$OPTIMIZE" ] && OPTIMIZE="-Os -ffunction-sections -fdata-sections -Wl,--gc-sections"
358
51722949f2cc Unconditionally add the $CROSS_COMPILE prefix to $CC, even if it's already set.
Rob Landley <rob@landley.net>
parents: 233
diff changeset
11 [ -z "$CC" ] && CC="cc"
51722949f2cc Unconditionally add the $CROSS_COMPILE prefix to $CC, even if it's already set.
Rob Landley <rob@landley.net>
parents: 233
diff changeset
12 CC="${CROSS_COMPILE}${CC}"
233
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents:
diff changeset
13 [ -z "$STRIP" ] && STRIP="${CROSS_COMPILE}strip"
d4176f3f3835 Zap toys/Config.in and instead create generated/Config.in from contents of
Rob Landley <rob@landley.net>
parents:
diff changeset
14 [ -z "$HOSTCC" ] && HOSTCC=gcc