2006-10-05 15:47:08 +05:30
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
debug=false
|
|
|
|
|
2007-02-25 06:10:37 +05:30
|
|
|
try() {
|
2007-10-07 22:35:22 +05:30
|
|
|
printf "%s\n" "Output of:" >$EXE.out
|
|
|
|
printf "%s\n" "$*" >>$EXE.out
|
|
|
|
printf "%s\n" "==========" >>$EXE.out
|
|
|
|
$debug && echo "Trying: $*"
|
|
|
|
"$@" >>$EXE.out 2>&1
|
|
|
|
exitcode=$?
|
|
|
|
cat $EXE.out
|
|
|
|
return $exitcode
|
2006-10-05 15:47:08 +05:30
|
|
|
}
|
|
|
|
|
2007-10-07 22:35:22 +05:30
|
|
|
EXE="$1"
|
|
|
|
CC="$2"
|
|
|
|
LDFLAGS="$3"
|
|
|
|
O_FILES="$4"
|
|
|
|
A_FILES="$5"
|
|
|
|
LDLIBS="$6"
|
|
|
|
|
2007-07-18 02:09:27 +05:30
|
|
|
# Sanitize lib list (dups, extra spaces etc)
|
2007-10-07 22:35:42 +05:30
|
|
|
LDLIBS=`echo "$LDLIBS" | xargs -n1 | sort | uniq | xargs`
|
2007-07-18 02:09:27 +05:30
|
|
|
|
|
|
|
# First link with all libs. If it fails, bail out
|
2007-10-07 22:35:42 +05:30
|
|
|
echo "Trying libraries: $LDLIBS"
|
2007-10-07 22:35:22 +05:30
|
|
|
# "lib1 lib2 lib3" -> "-llib1 -llib2 -llib3"
|
2007-10-07 22:35:42 +05:30
|
|
|
l_list=`echo "$LDLIBS" | sed -e 's/ / -l/g' -e 's/^/-l/' -e 's/^-l$//'`
|
2007-09-02 20:58:30 +05:30
|
|
|
test "x$l_list" != "x" && l_list="-Wl,--start-group $l_list -Wl,--end-group"
|
2007-10-07 22:35:22 +05:30
|
|
|
try $CC $LDFLAGS \
|
|
|
|
-o $EXE -Wl,-Map -Wl,$EXE.map \
|
|
|
|
-Wl,--warn-common -Wl,--sort-common -Wl,--gc-sections \
|
|
|
|
-Wl,--start-group $O_FILES $A_FILES -Wl,--end-group \
|
|
|
|
$l_list \
|
|
|
|
>/dev/null \
|
2007-07-18 02:09:27 +05:30
|
|
|
|| {
|
2007-10-07 22:35:22 +05:30
|
|
|
echo "Failed: $* $l_list"
|
|
|
|
cat $EXE.out
|
2007-07-18 02:09:27 +05:30
|
|
|
exit 1
|
|
|
|
}
|
2007-08-13 02:28: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-10-07 22:35:42 +05:30
|
|
|
while test "$LDLIBS"; do
|
|
|
|
$debug && echo "Trying libraries: $LDLIBS"
|
2007-07-18 02:09:27 +05:30
|
|
|
all_needed=true
|
2007-10-07 22:35:42 +05:30
|
|
|
for one in $LDLIBS; do
|
|
|
|
without_one=`echo " $LDLIBS " | sed "s/ $one / /g" | xargs`
|
2007-10-07 22:35:22 +05:30
|
|
|
# "lib1 lib2 lib3" -> "-llib1 -llib2 -llib3"
|
2007-09-02 20:58:30 +05:30
|
|
|
l_list=`echo "$without_one" | sed -e 's/ / -l/g' -e 's/^/-l/' -e 's/^-l$//'`
|
|
|
|
test "x$l_list" != "x" && l_list="-Wl,--start-group $l_list -Wl,--end-group"
|
2007-09-02 20:21:54 +05:30
|
|
|
$debug && echo "Trying -l options: '$l_list'"
|
2007-10-07 22:35:22 +05:30
|
|
|
try $CC $LDFLAGS \
|
|
|
|
-o $EXE -Wl,-Map -Wl,$EXE.map \
|
|
|
|
-Wl,--warn-common -Wl,--sort-common -Wl,--gc-sections \
|
|
|
|
-Wl,--start-group $O_FILES $A_FILES -Wl,--end-group \
|
|
|
|
$l_list \
|
|
|
|
>/dev/null
|
|
|
|
if test $? = 0; then
|
|
|
|
echo "Library $one is not needed"
|
2007-10-07 22:35:42 +05:30
|
|
|
LDLIBS="$without_one"
|
2007-10-07 22:35:22 +05:30
|
|
|
all_needed=false
|
2007-07-18 02:09:27 +05:30
|
|
|
else
|
2007-10-07 22:35:22 +05:30
|
|
|
echo "Library $one is needed"
|
2007-07-18 02:09:27 +05:30
|
|
|
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-10-07 22:35:42 +05:30
|
|
|
#{ echo "$LDLIBS" | grep -q ' '; } || break
|
2007-07-18 02:09:27 +05:30
|
|
|
done
|
|
|
|
|
2007-09-03 16:58:14 +05:30
|
|
|
# Make the binary with final, minimal list of libs
|
2007-10-07 22:35:42 +05:30
|
|
|
echo "Final link with: $LDLIBS"
|
|
|
|
l_list=`echo "$LDLIBS" | sed -e 's/ / -l/g' -e 's/^/-l/' -e 's/^-l$//'`
|
2007-09-03 16:58:14 +05:30
|
|
|
test "x$l_list" != "x" && l_list="-Wl,--start-group $l_list -Wl,--end-group -Wl,--verbose"
|
|
|
|
# --verbose gives us gobs of info to stdout (e.g. linker script used)
|
|
|
|
if ! test -f busybox_ldscript; then
|
2007-10-07 22:35:22 +05:30
|
|
|
try $CC $LDFLAGS \
|
|
|
|
-o $EXE -Wl,-Map -Wl,$EXE.map \
|
|
|
|
-Wl,--warn-common -Wl,--sort-common -Wl,--gc-sections \
|
|
|
|
-Wl,--start-group $O_FILES $A_FILES -Wl,--end-group \
|
|
|
|
$l_list -Wl,--verbose \
|
|
|
|
>/dev/null
|
2007-09-03 16:58:14 +05:30
|
|
|
else
|
|
|
|
echo "Custom linker script 'busybox_ldscript' found, using it"
|
2007-10-07 22:35:42 +05:30
|
|
|
# Add SORT_BY_ALIGNMENT to linker script (found in $EXE.out):
|
2007-09-03 16:58:14 +05:30
|
|
|
# .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-10-07 22:35:42 +05:30
|
|
|
# This will eliminate most of the padding (~3kb).
|
2007-10-07 22:35:22 +05:30
|
|
|
try $CC $LDFLAGS \
|
|
|
|
-o $EXE -Wl,-Map -Wl,$EXE.map \
|
|
|
|
-Wl,--warn-common -Wl,--sort-common -Wl,--gc-sections \
|
|
|
|
-Wl,--start-group $O_FILES $A_FILES -Wl,--end-group \
|
|
|
|
$l_list -Wl,--verbose \
|
|
|
|
-Wl,-T -Wl,busybox_ldscript \
|
|
|
|
>/dev/null
|
2007-09-03 16:58:14 +05:30
|
|
|
fi
|
2007-10-07 22:35:22 +05:30
|
|
|
|
|
|
|
mkdir 0lib 2>/dev/null
|
|
|
|
test -d 0lib || exit 1
|
|
|
|
ln -s libbusybox.so.1.8.0 0lib/libbusybox.so 2>/dev/null
|
|
|
|
|
|
|
|
EXE="0lib/libbusybox.so.1.8.0"
|
|
|
|
try $CC $LDFLAGS \
|
|
|
|
-o $EXE -Wl,-Map -Wl,$EXE.map \
|
|
|
|
-shared -fPIC -Wl,--enable-new-dtags \
|
|
|
|
-Wl,--start-group -Wl,--whole-archive $A_FILES -Wl,--no-whole-archive -Wl,--end-group \
|
|
|
|
$l_list -Wl,--verbose \
|
|
|
|
-Wl,-soname="libbusybox.so.1.8.0" \
|
|
|
|
-Wl,-z,combreloc \
|
|
|
|
>/dev/null \
|
|
|
|
|| {
|
|
|
|
echo "Linking $EXE failed"
|
|
|
|
exit 1
|
|
|
|
}
|
2007-10-07 22:35:42 +05:30
|
|
|
strip -s --remove-section=.note --remove-section=.comment $EXE
|
2007-10-07 22:35:22 +05:30
|
|
|
|
|
|
|
EXE="0lib/busybox"
|
|
|
|
try $CC $LDFLAGS \
|
|
|
|
-o $EXE -Wl,-Map -Wl,$EXE.map \
|
|
|
|
-Wl,--warn-common -Wl,--sort-common -Wl,--gc-sections \
|
|
|
|
-Wl,--start-group $O_FILES -Wl,--end-group \
|
|
|
|
$l_list -Wl,--verbose \
|
|
|
|
-L"0lib" -lbusybox \
|
|
|
|
>/dev/null \
|
|
|
|
|| {
|
|
|
|
echo "Linking $EXE failed"
|
|
|
|
exit 1
|
|
|
|
}
|
2007-10-07 22:35:42 +05:30
|
|
|
strip -s --remove-section=.note --remove-section=.comment $EXE
|