2006-10-05 15:47:08 +05:30
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
debug=false
|
|
|
|
|
2007-02-25 06:10:37 +05:30
|
|
|
try() {
|
2006-10-05 15:47:08 +05:30
|
|
|
added="$1"
|
|
|
|
shift
|
|
|
|
$debug && echo "Trying: $* $added"
|
2007-08-13 02:28:27 +05:30
|
|
|
"$@" $added 2>busybox_ld.err
|
2006-10-05 15:47:08 +05:30
|
|
|
}
|
|
|
|
|
2007-07-18 02:09:27 +05:30
|
|
|
# Sanitize lib list (dups, extra spaces etc)
|
|
|
|
#echo "BBOX_LIB_LIST=$BBOX_LIB_LIST"
|
|
|
|
BBOX_LIB_LIST=`echo "$BBOX_LIB_LIST" | xargs -n1 | sort | uniq | xargs`
|
|
|
|
|
|
|
|
# First link with all libs. If it fails, bail out
|
|
|
|
l_list=`echo "$BBOX_LIB_LIST" | sed -e 's/ / -l/g' -e 's/^/-l/'`
|
|
|
|
echo "Trying libraries: $BBOX_LIB_LIST"
|
|
|
|
try "-Wl,--start-group $l_list -Wl,--end-group" "$@" \
|
|
|
|
|| {
|
|
|
|
echo "Failed: $* -Wl,--start-group $l_list -Wl,--end-group"
|
|
|
|
cat busybox_ld.err
|
|
|
|
exit 1
|
|
|
|
}
|
2007-08-13 02:28:27 +05:30
|
|
|
|
|
|
|
#### Hack disabled: conflicts with ld --verbose flag in last link phase
|
|
|
|
|
|
|
|
##### Hack: we are not supposed to know executable name,
|
|
|
|
##### but this hack cuts down link time
|
|
|
|
####mv busybox_unstripped busybox_unstripped.tmp
|
|
|
|
####mv busybox.map busybox.map.tmp
|
2007-07-18 02:09:27 +05:30
|
|
|
|
2007-08-06 09:11:08 +05:30
|
|
|
# Now try to remove each lib and build without it.
|
2007-07-18 02:09:27 +05:30
|
|
|
# Stop when no lib can be removed.
|
2007-08-13 02:28:27 +05:30
|
|
|
####ever_discarded=false
|
2007-07-18 02:09:27 +05:30
|
|
|
while test "$BBOX_LIB_LIST"; do
|
|
|
|
$debug && echo "Trying libraries: $BBOX_LIB_LIST"
|
|
|
|
all_needed=true
|
|
|
|
for one in $BBOX_LIB_LIST; do
|
|
|
|
without_one=`echo " $BBOX_LIB_LIST " | sed "s/ $one / /g" | xargs`
|
|
|
|
l_list=`echo "$without_one" | sed -e 's/ / -l/g' -e 's/^/-l/'`
|
2007-09-02 20:21:54 +05:30
|
|
|
# If l_list is just "-l" without a lib, then make sure to test the
|
|
|
|
# correct thing to fail: just using -l will fail, so the last lib
|
|
|
|
# (usually m in my case) will incorrectly be added as needed.
|
|
|
|
if test "x$without_one" != "x"; then
|
|
|
|
l_list="-Wl,--start-group $l_list -Wl,--end-group"
|
|
|
|
else
|
|
|
|
# without_one is empty, so l_list has to be empty too
|
|
|
|
l_list=""
|
|
|
|
fi
|
|
|
|
$debug && echo "Trying -l options: '$l_list'"
|
|
|
|
if try "$l_list" "$@"; then
|
2007-07-18 02:09:27 +05:30
|
|
|
echo "Library $one is not needed"
|
|
|
|
BBOX_LIB_LIST="$without_one"
|
|
|
|
all_needed=false
|
2007-08-13 02:28:27 +05:30
|
|
|
#### ever_discarded=true
|
2007-07-18 02:09:27 +05:30
|
|
|
else
|
|
|
|
echo "Library $one is needed"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
# All libs were needed, can't remove any
|
|
|
|
$all_needed && break
|
2007-08-06 09:11:08 +05:30
|
|
|
# If there is no space char, the list has just one lib.
|
2007-07-18 02:09:27 +05:30
|
|
|
# I'm not sure that in this case lib really is 100% needed.
|
|
|
|
# Let's try linking without it anyway... thus commented out.
|
2007-08-06 09:11:08 +05:30
|
|
|
#{ echo "$BBOX_LIB_LIST" | grep -q ' '; } || break
|
2007-07-18 02:09:27 +05:30
|
|
|
done
|
|
|
|
|
2007-08-13 02:28:27 +05:30
|
|
|
####mv busybox_unstripped.tmp busybox_unstripped
|
|
|
|
####mv busybox.map.tmp busybox.map
|
|
|
|
####$ever_discarded && {
|
2007-08-06 09:11:08 +05:30
|
|
|
# Make the binary with final, minimal list of libs
|
2007-07-21 02:58:41 +05:30
|
|
|
echo "Final link with: $BBOX_LIB_LIST"
|
|
|
|
l_list=`echo "$BBOX_LIB_LIST" | sed -e 's/ / -l/g' -e 's/^/-l/'`
|
2007-08-13 02:28:27 +05:30
|
|
|
# --verbose gives us gobs of info to stdout (e.g. linker script used)
|
2007-08-14 22:13:01 +05:30
|
|
|
if ! test -f busybox_ldscript; then
|
|
|
|
try "-Wl,--start-group $l_list -Wl,--end-group -Wl,--verbose" "$@" >busybox_ld.out ####|| exit 1
|
|
|
|
else
|
|
|
|
echo "Custom linker script 'busybox_ldscript' found, using it"
|
|
|
|
# Add SORT_BY_ALIGNMENT to linker script (found in busybox_ld.out):
|
|
|
|
# .rodata : { *(.rodata SORT_BY_ALIGNMENT(.rodata.*) .gnu.linkonce.r.*) }
|
|
|
|
# *(.data SORT_BY_ALIGNMENT(.data.*) .gnu.linkonce.d.*)
|
|
|
|
# *(.bss SORT_BY_ALIGNMENT(.bss.*) .gnu.linkonce.b.*)
|
2007-08-24 15:57:41 +05:30
|
|
|
# This will eliminate most of the data padding (~3kb).
|
2007-08-14 22:13:01 +05:30
|
|
|
try "-Wl,--start-group $l_list -Wl,--end-group -Wl,--verbose -Wl,-T -Wl,busybox_ldscript" "$@" >busybox_ld.out
|
|
|
|
fi
|
2007-08-13 02:28:27 +05:30
|
|
|
####}
|
|
|
|
####rm busybox_ld.err
|
|
|
|
####exit 0 # Ensure "success" exit code
|