blob: 7ebe148df9cc2b8b4e3556368154595231eefb3a [file] [log] [blame]
Rob Landley28964802008-01-19 17:08:39 -06001#!/bin/bash
2
3# Grab default values for $CFLAGS and such.
4
Rob Landleyb3d4f0b2013-04-29 16:00:40 -05005export LANG=c
Rob Landley082a9a72014-08-30 16:34:46 -05006export LC_ALL=C
Rob Landley7a07c6b2014-09-09 20:13:03 -05007set -o pipefail
Rob Landley28964802008-01-19 17:08:39 -06008source ./configure
9
Rob Landleyd04dc1f2013-08-30 01:53:31 -050010[ -z "$KCONFIG_CONFIG" ] && KCONFIG_CONFIG=".config"
11
Rob Landleyd3df4232014-09-20 13:07:53 -050012# Since each cc invocation is short, launch half again as many processes
13# as we have processors so they don't exit faster than we can start them.
14[ -z "$CPUS" ] &&
15 CPUS=$((($(echo /sys/devices/system/cpu/cpu[0-9]* | wc -w)*3)/2))
16
Rob Landley86cafe12014-01-03 18:23:09 -060017# Respond to V= by echoing command lines as well as running them
Rob Landley62390fd2014-11-28 16:49:46 -060018DOTPROG=
Rob Landley86cafe12014-01-03 18:23:09 -060019do_loudly()
20{
Rob Landley62390fd2014-11-28 16:49:46 -060021 [ ! -z "$V" ] && echo "$@" || echo -n "$DOTPROG"
Rob Landley86cafe12014-01-03 18:23:09 -060022 "$@"
23}
24
Rob Landley62390fd2014-11-28 16:49:46 -060025# Is anything under directory $2 newer than file $1
26isnewer()
27{
28 [ ! -z "$(find "$2" -newer "$1" 2>/dev/null || echo yes)" ]
29}
30
31echo "Generate headers from toys/*/*.c..."
32
Rob Landley94a46032014-09-20 14:20:28 -050033mkdir -p generated
Rob Landley62390fd2014-11-28 16:49:46 -060034
35if isnewer generated/Config.in toys
36then
37 echo "Extract configuration information from toys/*.c files..."
38 scripts/genconfig.sh
39fi
40
41# Create a list of all the commands toybox can provide. Note that the first
42# entry is out of order on purpose (the toybox multiplexer command must be the
43# first element of the array). The rest must be sorted in alphabetical order
44# for fast binary search.
45
46if isnewer generated/newtoys.h toys
47then
48 echo -n "generated/newtoys.h "
49
50 echo "USE_TOYBOX(NEWTOY(toybox, NULL, TOYFLAG_STAYROOT))" > generated/newtoys.h
51 sed -n -e 's/^USE_[A-Z0-9_]*(/&/p' toys/*/*.c \
Elliott Hughes627cd0f2014-12-23 19:17:13 -060052 | sed 's/\(.*TOY(\)\([^,]*\),\(.*\)/\2 \1\2,\3/' | sort -s -k 1,1 \
Rob Landleyf3e56f42014-12-31 21:30:59 -060053 | sed 's/[^ ]* //' >> generated/newtoys.h || exit 1
Rob Landley62390fd2014-11-28 16:49:46 -060054fi
55
56[ ! -z "$V" ] && echo "Which C files to build..."
57
58# Extract a list of toys/*/*.c files to compile from the data in $KCONFIG_CONFIG
Rob Landley912b2be2015-02-07 17:20:23 -060059# (First command names, then filenames with relevant {NEW,OLD}TOY() macro.)
60
Rob Landley90afbad2015-04-17 02:46:11 -050061GITHASH="$(git describe --tags --abbrev=12 2>/dev/null)"
62[ ! -z "$GITHASH" ] && GITHASH="-DTOYBOX_VERSION=\"$GITHASH\""
Rob Landley912b2be2015-02-07 17:20:23 -060063TOYFILES="$(sed -n 's/^CONFIG_\([^=]*\)=.*/\1/p' "$KCONFIG_CONFIG" | xargs | tr ' [A-Z]' '|[a-z]')"
64TOYFILES="$(egrep -l "TOY[(]($TOYFILES)[ ,]" toys/*/*.c)"
Rob Landleya913d922015-05-09 17:07:22 -050065CFLAGS="$CFLAGS $(cat generated/cflags)"
Rob Landley90afbad2015-04-17 02:46:11 -050066BUILD="$(echo ${CROSS_COMPILE}${CC} $CFLAGS -I . $OPTIMIZE $GITHASH)"
Rob Landley62390fd2014-11-28 16:49:46 -060067FILES="$(echo lib/*.c main.c $TOYFILES)"
68
69genbuildsh()
70{
71 # Write a canned build line for use on crippled build machines.
72
73 echo "#!/bin/sh"
74 echo
75 echo "BUILD=\"$BUILD\""
76 echo
77 echo "FILES=\"$FILES\""
78 echo
79 echo "LINK=\"$LINK\""
80 echo
81 echo
82 echo '$BUILD $FILES $LINK'
83}
84
85if ! cmp -s <(genbuildsh | head -n 3) \
86 <(head -n 3 generated/build.sh 2>/dev/null)
87then
88 echo -n "Library probe"
89
90 # We trust --as-needed to remove each library if we don't use any symbols
91 # out of it, this loop is because the compiler has no way to ignore a library
92 # that doesn't exist, so we have to detect and skip nonexistent libraries
93 # for it.
94
95 > generated/optlibs.dat
Xavier Roche58c32692015-04-17 20:18:30 -050096 for i in util crypt m resolv selinux smack attr
Rob Landley62390fd2014-11-28 16:49:46 -060097 do
98 echo "int main(int argc, char *argv[]) {return 0;}" | \
99 ${CROSS_COMPILE}${CC} $CFLAGS -xc - -o /dev/null -Wl,--as-needed -l$i > /dev/null 2>/dev/null &&
100 echo -l$i >> generated/optlibs.dat
101 echo -n .
102 done
103 echo
104fi
105
106# LINK needs optlibs.dat, above
107
Rob Landley57f93c82015-02-28 12:39:16 -0600108LINK="$(echo $LDOPTIMIZE $LDFLAGS -o toybox_unstripped -Wl,--as-needed $(cat generated/optlibs.dat))"
Rob Landley62390fd2014-11-28 16:49:46 -0600109genbuildsh > generated/build.sh && chmod +x generated/build.sh || exit 1
110
Rob Landleyd04dc1f2013-08-30 01:53:31 -0500111echo "Make generated/config.h from $KCONFIG_CONFIG."
Rob Landley28964802008-01-19 17:08:39 -0600112
113# This long and roundabout sed invocation is to make old versions of sed happy.
114# New ones have '\n' so can replace one line with two without all the branches
115# and tedious mucking about with hold space.
116
Rob Landley1193a022009-01-30 16:10:55 -0600117sed -n \
118 -e 's/^# CONFIG_\(.*\) is not set.*/\1/' \
119 -e 't notset' \
120 -e 's/^CONFIG_\(.*\)=y.*/\1/' \
121 -e 't isset' \
Rob Landley687bea52009-01-30 16:17:35 -0600122 -e 's/^CONFIG_\([^=]*\)=\(.*\)/#define CFG_\1 \2/p' \
Rob Landley1193a022009-01-30 16:10:55 -0600123 -e 'd' \
124 -e ':notset' \
125 -e 'h' \
126 -e 's/.*/#define CFG_& 0/p' \
127 -e 'g' \
128 -e 's/.*/#define USE_&(...)/p' \
129 -e 'd' \
130 -e ':isset' \
131 -e 'h' \
132 -e 's/.*/#define CFG_& 1/p' \
133 -e 'g' \
134 -e 's/.*/#define USE_&(...) __VA_ARGS__/p' \
Rob Landleyd04dc1f2013-08-30 01:53:31 -0500135 $KCONFIG_CONFIG > generated/config.h || exit 1
Rob Landley28964802008-01-19 17:08:39 -0600136
Rob Landley62390fd2014-11-28 16:49:46 -0600137if [ generated/mkflags -ot scripts/mkflags.c ]
138then
139 do_loudly $HOSTCC scripts/mkflags.c -o generated/mkflags || exit 1
140fi
Rob Landley6cf0a112012-11-26 14:14:29 -0600141
Rob Landley46c80692013-12-28 17:06:55 -0600142echo -n "generated/flags.h "
Rob Landley207cada2013-10-03 03:18:00 -0500143
Rob Landleye36a9dd2014-02-23 20:11:06 -0600144# Process config.h and newtoys.h to generate FLAG_x macros. Note we must
145# always #define the relevant macro, even when it's disabled, because we
146# allow multiple NEWTOY() in the same C file. (When disabled the FLAG is 0,
147# so flags&0 becomes a constant 0 allowing dead code elimination.)
148
Rob Landley207cada2013-10-03 03:18:00 -0500149# Parse files through C preprocessor twice, once to get flags for current
150# .config and once to get flags for allyesconfig
151for I in A B
152do
153 (
154 # define macros and select header files with option string data
155
156 echo "#define NEWTOY(aa,bb,cc) aa $I bb"
157 echo '#define OLDTOY(...)'
158 if [ "$I" == A ]
159 then
160 cat generated/config.h
161 else
162 sed '/USE_.*([^)]*)$/s/$/ __VA_ARGS__/' generated/config.h
163 fi
164 cat generated/newtoys.h
165
166 # Run result through preprocessor, glue together " " gaps leftover from USE
167 # macros, delete comment lines, print any line with a quoted optstring,
168 # turn any non-quoted opstring (NULL or 0) into " " (because fscanf can't
Rob Landley170c3972014-02-28 20:46:16 -0600169 # handle "" with nothing in it, and mkflags uses that).
Rob Landley207cada2013-10-03 03:18:00 -0500170
Rob Landley73fff3b2013-10-23 02:52:01 -0500171 ) | ${CROSS_COMPILE}${CC} -E - | \
Rob Landley170c3972014-02-28 20:46:16 -0600172 sed -n -e 's/" *"//g;/^#/d;t clear;:clear;s/"/"/p;t;s/\( [AB] \).*/\1 " "/p'
Rob Landley207cada2013-10-03 03:18:00 -0500173
174# Sort resulting line pairs and glue them together into triplets of
175# command "flags" "allflags"
176# to feed into mkflags C program that outputs actual flag macros
Rob Landleye36a9dd2014-02-23 20:11:06 -0600177# If no pair (because command's disabled in config), use " " for flags
178# so allflags can define the appropriate zero macros.
Rob Landley207cada2013-10-03 03:18:00 -0500179
Elliott Hughes627cd0f2014-12-23 19:17:13 -0600180done | sort -s | sed -n 's/ A / /;t pair;h;s/\([^ ]*\).*/\1 " "/;x;b single;:pair;h;n;:single;s/[^ ]* B //;H;g;s/\n/ /;p' |\
Rob Landley207cada2013-10-03 03:18:00 -0500181generated/mkflags > generated/flags.h || exit 1
Rob Landley6cf0a112012-11-26 14:14:29 -0600182
Rob Landleyc0e56ed2012-10-08 00:02:30 -0500183# Extract global structure definitions and flag definitions from toys/*/*.c
184
185function getglobals()
186{
Rob Landleyc0e56ed2012-10-08 00:02:30 -0500187 for i in toys/*/*.c
188 do
189 NAME="$(echo $i | sed 's@.*/\(.*\)\.c@\1@')"
Rob Landley207cada2013-10-03 03:18:00 -0500190 DATA="$(sed -n -e '/^GLOBALS(/,/^)/b got;b;:got' \
191 -e 's/^GLOBALS(/struct '"$NAME"'_data {/' \
192 -e 's/^)/};/' -e 'p' $i)"
Rob Landleyc0e56ed2012-10-08 00:02:30 -0500193
Rob Landley207cada2013-10-03 03:18:00 -0500194 [ ! -z "$DATA" ] && echo -e "// $i\n\n$DATA\n"
Rob Landleyc0e56ed2012-10-08 00:02:30 -0500195 done
196}
197
Rob Landley62390fd2014-11-28 16:49:46 -0600198if isnewer generated/globals.h toys
199then
200 echo -n "generated/globals.h "
201 GLOBSTRUCT="$(getglobals)"
202 (
203 echo "$GLOBSTRUCT"
204 echo
205 echo "extern union global_union {"
206 echo "$GLOBSTRUCT" | \
207 sed -n 's/struct \(.*\)_data {/ struct \1_data \1;/p'
208 echo "} this;"
209 ) > generated/globals.h
210fi
Rob Landleyc0e56ed2012-10-08 00:02:30 -0500211
212echo "generated/help.h"
Rob Landley62390fd2014-11-28 16:49:46 -0600213if [ generated/config2help -ot scripts/config2help.c ]
214then
215 do_loudly $HOSTCC scripts/config2help.c -I . lib/xwrap.c lib/llist.c \
Rob Landley79839a42014-12-13 12:09:25 -0600216 lib/lib.c lib/portability.c -o generated/config2help || exit 1
Rob Landley62390fd2014-11-28 16:49:46 -0600217fi
Rob Landley0e040df2014-02-04 06:14:30 -0600218generated/config2help Config.in $KCONFIG_CONFIG > generated/help.h || exit 1
Rob Landleyc0e56ed2012-10-08 00:02:30 -0500219
Rob Landley62390fd2014-11-28 16:49:46 -0600220[ ! -z "$NOBUILD" ] && exit 0
Rob Landleyfb98c1e2012-05-23 21:54:16 -0500221
Rob Landley91b360a2014-08-09 14:33:34 -0500222echo -n "Compile toybox"
223[ ! -z "$V" ] && echo
Rob Landley62390fd2014-11-28 16:49:46 -0600224DOTPROG=.
Rob Landley91b360a2014-08-09 14:33:34 -0500225
226# This is a parallel version of: do_loudly $BUILD $FILES $LINK || exit 1
227
Rob Landley62390fd2014-11-28 16:49:46 -0600228X="$(ls -1t generated/obj/* 2>/dev/null | tail -n 1)"
229if [ ! -e "$X" ] || [ ! -z "$(find toys -name "*.h" -newer "$X")" ]
230then
231 rm -rf generated/obj && mkdir -p generated/obj || exit 1
232else
233 rm -f generated/obj/{main,lib_help}.o || exit 1
234fi
Rob Landley5d16faa2014-08-24 22:42:47 -0500235PENDING=
Rob Landley62390fd2014-11-28 16:49:46 -0600236LFILES=
Rob Landley42a36d62014-11-28 17:30:46 -0600237DONE=0
Rob Landley91b360a2014-08-09 14:33:34 -0500238for i in $FILES
239do
Rob Landley7a07c6b2014-09-09 20:13:03 -0500240 # build each generated/obj/*.o file in parallel
Rob Landley91b360a2014-08-09 14:33:34 -0500241
242 X=${i/lib\//lib_}
243 X=${X##*/}
Rob Landley62390fd2014-11-28 16:49:46 -0600244 OUT="generated/obj/${X%%.c}.o"
245 LFILES="$LFILES $OUT"
246 [ "$OUT" -nt "$i" ] && continue
247 do_loudly $BUILD -c $i -o $OUT &
Rob Landley91b360a2014-08-09 14:33:34 -0500248
249 # ratelimit to $CPUS many parallel jobs, detecting errors
250
251 while true
252 do
Rob Landley5d16faa2014-08-24 22:42:47 -0500253 PENDING="$(echo $PENDING $(jobs -rp) | tr ' ' '\n' | sort -u)"
Rob Landley9bb73ad2014-09-04 00:23:51 -0500254 [ $(echo -n "$PENDING" | wc -l) -lt "$CPUS" ] && break;
Rob Landley5d16faa2014-08-24 22:42:47 -0500255
Rob Landley42a36d62014-11-28 17:30:46 -0600256 wait $(echo "$PENDING" | head -n 1)
257 DONE=$(($DONE+$?))
Rob Landley5d16faa2014-08-24 22:42:47 -0500258 PENDING="$(echo "$PENDING" | tail -n +2)"
Rob Landley91b360a2014-08-09 14:33:34 -0500259 done
Rob Landley42a36d62014-11-28 17:30:46 -0600260 [ $DONE -ne 0 ] && break
Rob Landley91b360a2014-08-09 14:33:34 -0500261done
262
263# wait for all background jobs, detecting errors
264
Rob Landley5d16faa2014-08-24 22:42:47 -0500265for i in $PENDING
Rob Landley91b360a2014-08-09 14:33:34 -0500266do
Rob Landley42a36d62014-11-28 17:30:46 -0600267 wait $i
268 DONE=$(($DONE+$?))
Rob Landley91b360a2014-08-09 14:33:34 -0500269done
270
Rob Landley42a36d62014-11-28 17:30:46 -0600271[ $DONE -ne 0 ] && exit 1
272
Rob Landley62390fd2014-11-28 16:49:46 -0600273do_loudly $BUILD $LFILES $LINK || exit 1
Rob Landley1f44b5f2015-03-06 15:11:38 -0600274if ! do_loudly ${CROSS_COMPILE}strip toybox_unstripped -o toybox
Rob Landley57f93c82015-02-28 12:39:16 -0600275then
Rob Landley1f44b5f2015-03-06 15:11:38 -0600276 echo "strip failed, using unstripped" && cp toybox_unstripped toybox ||
277 exit 1
Rob Landley57f93c82015-02-28 12:39:16 -0600278fi
Rob Landleyb704ad22009-12-13 00:12:26 -0600279# gcc 4.4's strip command is buggy, and doesn't set the executable bit on
280# its output the way SUSv4 suggests it do so.
Rob Landley1aa66ba2012-02-17 12:06:12 -0600281do_loudly chmod +x toybox || exit 1
Rob Landley91b360a2014-08-09 14:33:34 -0500282echo