hush/scripts/trylink
Denis Vlasenko 84a9b8750e build system: produce link map. Rather useful when you
are wondering why your busybox is much bigger that you hoped for.
2007-03-15 23:44:10 +00:00

19 lines
330 B
Bash
Executable File

#!/bin/sh
debug=false
try() {
added="$1"
shift
$debug && echo "Trying: $* $added"
"$@" $added >busybox.map 2>busybox_ld.err \
&& exit 0
}
try "" "$@"
try "-lm" "$@"
try "-lcrypt" "$@"
try "-Wl,--start-group -lcrypt -lm -Wl,--end-group" "$@"
# It failed. Let people see the error messages
cat busybox_ld.err