build system: produce link map. Rather useful when you

are wondering why your busybox is much bigger that you hoped for.
This commit is contained in:
Denis Vlasenko
2007-03-15 23:44:10 +00:00
parent 3ce293b585
commit 84a9b8750e
2 changed files with 4 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ try() {
added="$1"
shift
$debug && echo "Trying: $* $added"
"$@" $added >/dev/null 2>&1 \
"$@" $added >busybox.map 2>busybox_ld.err \
&& exit 0
}
@@ -14,5 +14,5 @@ try "" "$@"
try "-lm" "$@"
try "-lcrypt" "$@"
try "-Wl,--start-group -lcrypt -lm -Wl,--end-group" "$@"
# It failed. Rerun & let people see the error messages
"$@" $added
# It failed. Let people see the error messages
cat busybox_ld.err