annotate configure @ 408:8506c538f26a

Comment changes, and add a blank line to the help text.
author Rob Landley <rob@landley.net>
date Wed, 18 Jan 2012 20:32:52 -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