blob: 0b8f6c0625523c58ba993575822980a139bd8b5b [file] [log] [blame]
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00001#!/bin/sh
2
3debug=false
4
Denis Vlasenko018e0852007-02-25 00:40:37 +00005try() {
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00006 added="$1"
7 shift
8 $debug && echo "Trying: $* $added"
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00009 "$@" $added 2>busybox_ld.err
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000010}
11
Denis Vlasenko150d2fa2007-07-17 20:39:27 +000012# Sanitize lib list (dups, extra spaces etc)
13#echo "BBOX_LIB_LIST=$BBOX_LIB_LIST"
14BBOX_LIB_LIST=`echo "$BBOX_LIB_LIST" | xargs -n1 | sort | uniq | xargs`
15
16# First link with all libs. If it fails, bail out
Denis Vlasenko150d2fa2007-07-17 20:39:27 +000017echo "Trying libraries: $BBOX_LIB_LIST"
Denis Vlasenko9862e6b2007-09-03 11:28:14 +000018l_list=`echo "$BBOX_LIB_LIST" | sed -e 's/ / -l/g' -e 's/^/-l/' -e 's/^-l$//'`
Bernhard Reutner-Fischerd2bb2d32007-09-02 15:28:30 +000019test "x$l_list" != "x" && l_list="-Wl,--start-group $l_list -Wl,--end-group"
20try "$l_list" "$@" \
Denis Vlasenko150d2fa2007-07-17 20:39:27 +000021|| {
22 echo "Failed: $* -Wl,--start-group $l_list -Wl,--end-group"
23 cat busybox_ld.err
24 exit 1
25}
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000026
Denis Vlasenko8274e062007-08-06 03:41:08 +000027# Now try to remove each lib and build without it.
Denis Vlasenko150d2fa2007-07-17 20:39:27 +000028# Stop when no lib can be removed.
29while test "$BBOX_LIB_LIST"; do
30 $debug && echo "Trying libraries: $BBOX_LIB_LIST"
31 all_needed=true
32 for one in $BBOX_LIB_LIST; do
33 without_one=`echo " $BBOX_LIB_LIST " | sed "s/ $one / /g" | xargs`
Bernhard Reutner-Fischerd2bb2d32007-09-02 15:28:30 +000034 l_list=`echo "$without_one" | sed -e 's/ / -l/g' -e 's/^/-l/' -e 's/^-l$//'`
35 test "x$l_list" != "x" && l_list="-Wl,--start-group $l_list -Wl,--end-group"
Bernhard Reutner-Fischer8d91c132007-09-02 14:51:54 +000036 $debug && echo "Trying -l options: '$l_list'"
37 if try "$l_list" "$@"; then
Denis Vlasenko150d2fa2007-07-17 20:39:27 +000038 echo "Library $one is not needed"
39 BBOX_LIB_LIST="$without_one"
40 all_needed=false
41 else
42 echo "Library $one is needed"
43 fi
44 done
45 # All libs were needed, can't remove any
46 $all_needed && break
Denis Vlasenko8274e062007-08-06 03:41:08 +000047 # If there is no space char, the list has just one lib.
Denis Vlasenko150d2fa2007-07-17 20:39:27 +000048 # I'm not sure that in this case lib really is 100% needed.
49 # Let's try linking without it anyway... thus commented out.
Denis Vlasenko8274e062007-08-06 03:41:08 +000050 #{ echo "$BBOX_LIB_LIST" | grep -q ' '; } || break
Denis Vlasenko150d2fa2007-07-17 20:39:27 +000051done
52
Denis Vlasenko9862e6b2007-09-03 11:28:14 +000053# Make the binary with final, minimal list of libs
54echo "Final link with: $BBOX_LIB_LIST"
55l_list=`echo "$BBOX_LIB_LIST" | sed -e 's/ / -l/g' -e 's/^/-l/' -e 's/^-l$//'`
56test "x$l_list" != "x" && l_list="-Wl,--start-group $l_list -Wl,--end-group -Wl,--verbose"
57# --verbose gives us gobs of info to stdout (e.g. linker script used)
58if ! test -f busybox_ldscript; then
59 try "$l_list -Wl,--verbose" "$@" >busybox_ld.out
60else
61 echo "Custom linker script 'busybox_ldscript' found, using it"
62 # Add SORT_BY_ALIGNMENT to linker script (found in busybox_ld.out):
63 # .rodata : { *(.rodata SORT_BY_ALIGNMENT(.rodata.*) .gnu.linkonce.r.*) }
64 # *(.data SORT_BY_ALIGNMENT(.data.*) .gnu.linkonce.d.*)
65 # *(.bss SORT_BY_ALIGNMENT(.bss.*) .gnu.linkonce.b.*)
66 # This will eliminate most of the data padding (~3kb).
67 try "$l_list -Wl,--verbose -Wl,-T -Wl,busybox_ldscript" "$@" >busybox_ld.out
68fi