| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- #!/bin/bash
- # Grab default values for $CFLAGS and such.
- set -o pipefail
- source scripts/portability.sh
- # Shell functions called by the build
- # Respond to V= by echoing command lines as well as running them
- do_loudly()
- {
- { [ -n "$V" ] && echo "$@" || echo -n "$DOTPROG" ; } >&2
- "$@"
- }
- # Is anything under directory $2 newer than generated/$1 (or does it not exist)?
- isnewer()
- {
- [ -e "$GENDIR/$1" ] && [ -z "$(find "${@:2}" -newer "$GENDIR/$1")" ] &&
- return 1
- echo -n "${DIDNEWER:-$GENDIR/{}$1"
- DIDNEWER=,
- }
- # Build a tool that runs on the host
- hostcomp()
- {
- if [ ! -f "$UNSTRIPPED"/$1 ] || [ "$UNSTRIPPED"/$1 -ot scripts/$1.c ]
- then
- do_loudly $HOSTCC scripts/$1.c -o "$UNSTRIPPED"/$1 || exit 1
- fi
- }
- # Set/record build environment information
- compflags()
- {
- [ -z "$VERSION" ] && [ -d ".git" ] && [ -n "$(which git 2>/dev/null)" ] &&
- VERSION="-DTOYBOX_VERSION=\"$(git describe --tags --abbrev=12 2>/dev/null)\""
- # VERSION and LIBRARIES volatile, changing either does not require a rebuild
- echo '#!/bin/sh'
- echo
- echo "VERSION='$VERSION'"
- echo "LIBRARIES='$(xargs 2>/dev/null < "$GENDIR/optlibs.dat")'"
- echo "BUILD='${CROSS_COMPILE}${CC} $CFLAGS -I . $OPTIMIZE '\"\$VERSION\""
- echo "LINK='$LDOPTIMIZE $LDFLAGS '\"\$LIBRARIES\""
- echo "PATH='$PATH'"
- echo "# Built from $KCONFIG_CONFIG"
- echo
- }
- # Make sure rm -rf isn't gonna go funny
- B="$(readlink -f "$PWD")/" A="$(readlink -f "$GENDIR")" A="${A%/}"/
- [ "$A" == "${B::${#A}}" ] &&
- { echo "\$GENDIR=$GENDIR cannot include \$PWD=$PWD"; exit 1; }
- unset A B DOTPROG DIDNEWER
- # Force full rebuild if our compiler/linker options changed
- cmp -s <(compflags|sed '5,8!d') <($SED '5,8!d' "$GENDIR"/build.sh 2>/dev/null)||
- rm -rf "$GENDIR"/* # Keep symlink, delete contents
- mkdir -p "$UNSTRIPPED" "$(dirname $OUTNAME)" || exit 1
- # Extract a list of toys/*/*.c files to compile from the data in $KCONFIG_CONFIG
- # (First command names, then filenames with relevant {NEW,OLD}TOY() macro.)
- [ -n "$V" ] && echo -e "\nWhich C files to build..."
- TOYFILES="$($SED -n 's/^CONFIG_\([^=]*\)=.*/\1/p' "$KCONFIG_CONFIG" | xargs | tr ' [A-Z]' '|[a-z]')"
- TOYFILES="main.c $(egrep -l "TOY[(]($TOYFILES)[ ,]" toys/*/*.c | xargs)"
- if [ "${TOYFILES/pending//}" != "$TOYFILES" ]
- then
- echo -e "\n\033[1;31mwarning: using unfinished code from toys/pending\033[0m"
- fi
- # Probe library list if our compiler/linker options changed
- if [ ! -e "$GENDIR"/optlibs.dat ]
- then
- echo -n "Library probe"
- # --as-needed removes libraries we don't use any symbols out of, but the
- # compiler has no way to ignore a library that doesn't exist, so detect
- # and skip nonexistent libraries for it.
- > "$GENDIR"/optlibs.new
- [ -z "$V" ] && X=/dev/null || X=/dev/stderr
- for i in util crypt m resolv selinux smack attr crypto z log iconv tls ssl
- do
- do_loudly ${CROSS_COMPILE}${CC} $CFLAGS $LDFLAGS -xc - -l$i >>$X 2>&1 \
- -o "$UNSTRIPPED"/libprobe <<<"int main(int argc,char*argv[]){return 0;}"&&
- do_loudly echo -n ' '-l$i >> "$GENDIR"/optlibs.new
- done
- unset X
- rm -f "$UNSTRIPPED"/libprobe
- mv "$GENDIR"/optlibs.{new,dat} || exit 1
- echo
- fi
- # Write build variables (and set them locally), then append build invocation.
- compflags > "$GENDIR"/build.sh && source "$GENDIR/build.sh" &&
- echo -e "\$BUILD lib/*.c $TOYFILES \$LINK -o $OUTNAME" >> "$GENDIR"/build.sh&&
- chmod +x "$GENDIR"/build.sh || exit 1
- if isnewer Config.in toys || isnewer Config.in Config.in
- then
- scripts/genconfig.sh
- fi
- # Does .config need dependency recalculation because toolchain changed?
- A="$($SED -n '/^config .*$/h;s/default \(.\)/\1/;T;H;g;s/config \([^\n]*\)[^yn]*\(.\)/\1=\2/p' "$GENDIR"/Config.probed | sort)"
- B="$(egrep "^CONFIG_($(echo "$A" | sed 's/=[yn]//' | xargs | tr ' ' '|'))=" "$KCONFIG_CONFIG" | $SED 's/^CONFIG_//' | sort)"
- A="$(echo "$A" | grep -v =n)"
- [ "$A" != "$B" ] &&
- { echo -e "\nWarning: Config.probed changed, run 'make oldconfig'" >&2; }
- unset A B
- # Create a list of all the commands toybox can provide.
- if isnewer newtoys.h toys
- then
- # The multiplexer is the first element in the array
- echo "USE_TOYBOX(NEWTOY(toybox, 0, TOYFLAG_STAYROOT|TOYFLAG_NOHELP))" \
- > "$GENDIR"/newtoys.h
- # Sort rest by name for binary search (copy name to front, sort, remove copy)
- $SED -n 's/^\(USE_[^(]*(.*TOY(\)\([^,]*\)\(,.*\)/\2 \1\2\3/p' toys/*/*.c \
- | sort -s -k 1,1 | $SED 's/[^ ]* //' >> "$GENDIR"/newtoys.h
- [ $? -ne 0 ] && exit 1
- fi
- #TODO: "make $SED && make" doesn't regenerate config.h because diff .config
- if true #isnewer config.h "$KCONFIG_CONFIG"
- then
- # This long and roundabout sed invocation is to make old versions of sed
- # happy. New ones have '\n' so can replace one line with two without all
- # the branches and tedious mucking about with hyperspace.
- # TODO: clean this up to use modern stuff.
- $SED -n \
- -e 's/^# CONFIG_\(.*\) is not set.*/\1/' \
- -e 't notset' \
- -e 's/^CONFIG_\(.*\)=y.*/\1/' \
- -e 't isset' \
- -e 's/^CONFIG_\([^=]*\)=\(.*\)/#define CFG_\1 \2/p' \
- -e 'd' \
- -e ':notset' \
- -e 'h' \
- -e 's/.*/#define CFG_& 0/p' \
- -e 'g' \
- -e 's/.*/#define USE_&(...)/p' \
- -e 'd' \
- -e ':isset' \
- -e 'h' \
- -e 's/.*/#define CFG_& 1/p' \
- -e 'g' \
- -e 's/.*/#define USE_&(...) __VA_ARGS__/p' \
- $KCONFIG_CONFIG > "$GENDIR"/config.h || exit 1
- fi
- # Process config.h and newtoys.h to generate FLAG_x macros. Note we must
- # always #define the relevant macro, even when it's disabled, because we
- # allow multiple NEWTOY() in the same C file. (When disabled the FLAG is 0,
- # so flags&0 becomes a constant 0 allowing dead code elimination.)
- hostcomp mkflags
- if isnewer flags.h toys "$KCONFIG_CONFIG"
- then
- # Parse files through C preprocessor twice, once to get flags for current
- # .config and once to get flags for allyesconfig
- for I in A B
- do
- (
- # define macros and select header files with option string data
- echo "#define NEWTOY(aa,bb,cc) aa $I bb"
- echo '#define OLDTOY(...)'
- if [ "$I" == A ]
- then
- cat "$GENDIR"/config.h
- else
- $SED '/USE_.*([^)]*)$/s/$/ __VA_ARGS__/' "$GENDIR"/config.h
- fi
- echo '#include "lib/toyflags.h"'
- cat "$GENDIR"/newtoys.h
- # Run result through preprocessor, glue together " " gaps leftover from USE
- # macros, delete comment lines, print any line with a quoted optstring,
- # turn any non-quoted opstring (NULL or 0) into " " (because fscanf can't
- # handle "" with nothing in it, and mkflags uses that).
- ) | ${CROSS_COMPILE}${CC} -E - | \
- $SED -n -e 's/" *"//g;/^#/d;t clear;:clear;s/"/"/p;t;s/\( [AB] \).*/\1 " "/p'
- # Sort resulting line pairs and glue them together into triplets of
- # command "flags" "allflags"
- # to feed into mkflags C program that outputs actual flag macros
- # If no pair (because command's disabled in config), use " " for flags
- # so allflags can define the appropriate zero macros.
- done | sort -s | $SED -n -e 's/ A / /;t pair;h;s/\([^ ]*\).*/\1 " "/;x' \
- -e 'b single;:pair;h;n;:single;s/[^ ]* B //;H;g;s/\n/ /;p' | \
- tee "$GENDIR"/flags.raw | "$UNSTRIPPED"/mkflags > "$GENDIR"/flags.h || exit 1
- fi
- # Extract global structure definitions and flag definitions from toys/*/*.c
- function getglobals()
- {
- for i in toys/*/*.c
- do
- # alas basename -s isn't in posix yet.
- NAME="$(echo $i | $SED 's@.*/\(.*\)\.c@\1@')"
- DATA="$($SED -n -e '/^GLOBALS(/,/^)/b got;b;:got' \
- -e 's/^GLOBALS(/_data {/' \
- -e 's/^)/};/' -e 'p' $i)"
- [ -n "$DATA" ] && echo -e "// $i\n\nstruct $NAME$DATA\n"
- done
- }
- if isnewer globals.h toys
- then
- GLOBSTRUCT="$(getglobals)"
- (
- echo "$GLOBSTRUCT"
- echo
- echo "extern union global_union {"
- echo "$GLOBSTRUCT" | \
- $SED -n 's/struct \(.*\)_data {/ struct \1_data \1;/p'
- echo "} this;"
- ) > "$GENDIR"/globals.h
- fi
- hostcomp mktags
- if isnewer tags.h toys
- then
- $SED -n '/TAGGED_ARRAY(/,/^)/{s/.*TAGGED_ARRAY[(]\([^,]*\),/\1/;p}' \
- toys/*/*.c lib/*.c | "$UNSTRIPPED"/mktags > "$GENDIR"/tags.h
- fi
- hostcomp config2help
- if isnewer help.h "$GENDIR"/Config.in
- then
- "$UNSTRIPPED"/config2help Config.in $KCONFIG_CONFIG > "$GENDIR"/help.h || exit 1
- fi
- [ -z "$DIDNEWER" ] || echo }
- [ -n "$NOBUILD" ] && exit 0
- echo "Compile $OUTNAME"
- DOTPROG=.
- # This is a parallel version of: do_loudly $BUILD lib/*.c $TOYFILES $LINK
- # Build all if oldest generated/obj file isn't newer than all header files.
- X="$(ls -1t "$GENDIR"/obj/* 2>/dev/null | tail -n 1)"
- if [ ! -e "$X" ] || [ -n "$(find toys -name "*.h" -newer "$X")" ]
- then
- rm -rf "$GENDIR"/obj && mkdir -p "$GENDIR"/obj || exit 1
- else
- # always redo toy_list[] and help_data[]
- rm -f "$GENDIR"/obj/main.o || exit 1
- fi
- # build each generated/obj/*.o file in parallel
- PENDING= LNKFILES= CLICK= DONE=0 COUNT=0
- for i in lib/*.c click $TOYFILES
- do
- [ "$i" == click ] && CLICK=1 && continue
- X=${i/lib\//lib_}
- X=${X##*/}
- OUT="$GENDIR/obj/${X%%.c}.o"
- LNKFILES="$LNKFILES $OUT"
- # Library files don't get rebuilt if older than .config, but commands do.
- [ "$OUT" -nt "$i" ] && [ -z "$CLICK" -o "$OUT" -nt "$KCONFIG_CONFIG" ] &&
- continue
- do_loudly $BUILD -c $i -o $OUT &
- # ratelimit to $CPUS many parallel jobs, detecting errors
- [ $((++COUNT)) -ge $CPUS ] && { wait $DASHN; DONE=$?; : $((--COUNT)); }
- [ $DONE -ne 0 ] && break
- done
- # wait for all background jobs, detecting errors
- while [ $((COUNT--)) -gt 0 ]
- do
- wait $DASHN;
- DONE=$((DONE+$?))
- done
- [ $DONE -ne 0 ] && exit 1
- UNSTRIPPED="$UNSTRIPPED/${OUTNAME/*\//}"
- do_loudly $BUILD $LNKFILES $LINK -o "$UNSTRIPPED" || exit 1
- if [ -n "$NOSTRIP" ] ||
- ! do_loudly ${CROSS_COMPILE}${STRIP} "$UNSTRIPPED" -o "$OUTNAME"
- then
- [ -z "$NOSTRIP" ] && echo "strip failed, using unstripped"
- rm -f "$OUTNAME" &&
- cp "$UNSTRIPPED" "$OUTNAME" || exit 1
- fi
- # Remove write bit set so buggy installs (like bzip's) don't overwrite the
- # multiplexer binary via truncate-and-write through a symlink.
- do_loudly chmod 555 "$OUTNAME" || exit 1
- # Ensure make wrapper sees success return code
- [ -z "$V" ] && echo >&2 || true
|