2 # SPDX-License-Identifier: GPL-2.0
14 echo "usage: $0 [-o outfile] <make options/args>"
22 outfile=`mktemp --tmpdir stackusage.$$.XXXX`
25 KCFLAGS="${KCFLAGS} -fstack-usage" make "$@"
27 # Prepend directory name to file names, remove column information,
28 # make file:line/function/size/type properly tab-separated.
29 find . -name '*.su' -newermt "@${now}" -print | \
30 xargs perl -MFile::Basename -pe \
31 '$d = dirname($ARGV); s#([^:]+:[0-9]+):[0-9]+:#$d/$1\t#;' | \
32 sort -k3,3nr > "${outfile}"
34 echo "$0: output written to ${outfile}"