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
|
|
|
|
2007-10-07 22:36:01 +05:30
|
|
|
. .config
|
2007-10-07 22:35:22 +05:30
|
|
|
|
2007-10-07 22:36:01 +05:30
|
|
|
sharedlib_dir="0_lib"
|
|
|
|
|
|
|
|
if test "$CONFIG_BUILD_LIBBUSYBOX" = y; then
|
|
|
|
mkdir "$sharedlib_dir" 2>/dev/null
|
|
|
|
test -d "$sharedlib_dir" || {
|
|
|
|
echo "Cannot make directory $sharedlib_dir"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
ln -s "libbusybox.so.$BB_VER" "$sharedlib_dir"/libbusybox.so 2>/dev/null
|
|
|
|
|
|
|
|
EXE="$sharedlib_dir/libbusybox.so.${BB_VER}_unstripped"
|
|
|
|
try $CC $LDFLAGS \
|
2007-10-07 22:35:22 +05:30
|
|
|
-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 \
|
2007-10-07 22:36:01 +05:30
|
|
|
-Wl,-soname="libbusybox.so.$BB_VER" \
|
2007-10-07 22:35:22 +05:30
|
|
|
-Wl,-z,combreloc \
|
|
|
|
>/dev/null \
|
2007-10-07 22:36:01 +05:30
|
|
|
|| {
|
|
|
|
echo "Linking $EXE failed"
|
|
|
|
cat $EXE.out
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
strip -s --remove-section=.note --remove-section=.comment $EXE -o "$sharedlib_dir/libbusybox.so.$BB_VER"
|
|
|
|
echo "libbusybox: $sharedlib_dir/libbusybox.so.$BB_VER"
|
|
|
|
fi
|
2007-10-07 22:35:22 +05:30
|
|
|
|
2007-10-07 22:36:01 +05:30
|
|
|
if test "$CONFIG_FEATURE_SHARED_BUSYBOX" = y; then
|
|
|
|
EXE="$sharedlib_dir/busybox_unstripped"
|
|
|
|
try $CC $LDFLAGS \
|
2007-10-07 22:35:22 +05:30
|
|
|
-o $EXE -Wl,-Map -Wl,$EXE.map \
|
|
|
|
-Wl,--warn-common -Wl,--sort-common -Wl,--gc-sections \
|
|
|
|
-Wl,--start-group $O_FILES -Wl,--end-group \
|
2007-10-07 22:36:26 +05:30
|
|
|
-Wl,--verbose \
|
2007-10-07 22:36:01 +05:30
|
|
|
-L"$sharedlib_dir" -lbusybox \
|
2007-10-07 22:35:22 +05:30
|
|
|
>/dev/null \
|
2007-10-07 22:36:01 +05:30
|
|
|
|| {
|
|
|
|
echo "Linking $EXE failed"
|
|
|
|
cat $EXE.out
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
strip -s --remove-section=.note --remove-section=.comment $EXE -o "$sharedlib_dir/busybox"
|
|
|
|
echo "busybox linked against libbusybox: $sharedlib_dir/busybox"
|
|
|
|
fi
|
2007-10-07 22:36:26 +05:30
|
|
|
|
|
|
|
if test "$CONFIG_FEATURE_INDIVIDUAL" = y; then
|
|
|
|
gcc -DNAME_MAIN_CNAME -E -include include/autoconf.h include/applets.h \
|
|
|
|
| grep -v "^#" \
|
|
|
|
| grep -v "^$" \
|
|
|
|
> applet.lst
|
|
|
|
while read name main cname; do
|
|
|
|
|
|
|
|
test x"$cname" = "x[" && cname=test
|
|
|
|
test x"$cname" = "x[[" && cname=test
|
|
|
|
|
|
|
|
echo "\
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include \"../include/autoconf.h\"
|
|
|
|
#include \"../include/usage.h\"
|
|
|
|
|
|
|
|
#ifdef __GLIBC__
|
|
|
|
/* Make it reside in R/W memory: */
|
|
|
|
int *const bb_errno __attribute__ ((section (\".data\")));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
const char *applet_name = \"$name\";
|
|
|
|
|
|
|
|
void bb_show_usage(void)
|
|
|
|
{
|
|
|
|
fprintf(stderr, \"Usage: $name \"
|
|
|
|
#ifdef ${cname}_trivial_usage
|
|
|
|
${cname}_trivial_usage
|
|
|
|
#endif
|
|
|
|
#ifdef ${cname}_full_usage
|
|
|
|
\"\\n\\n\" ${cname}_full_usage
|
|
|
|
#endif
|
|
|
|
\"\\n\\n\");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int $main(int argc, char **argv);
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
#ifdef __GLIBC__
|
|
|
|
(*(int **)&bb_errno) = __errno_location();
|
|
|
|
#endif
|
|
|
|
return $main(argc, argv);
|
|
|
|
}
|
|
|
|
" >"$sharedlib_dir/applet.c"
|
|
|
|
|
|
|
|
EXE="$sharedlib_dir/$name"
|
|
|
|
try $CC $LDFLAGS "$sharedlib_dir/applet.c" \
|
|
|
|
-o $EXE \
|
|
|
|
-Wl,--warn-common -Wl,--sort-common -Wl,--gc-sections \
|
|
|
|
-L"$sharedlib_dir" -lbusybox \
|
|
|
|
>/dev/null \
|
|
|
|
|| {
|
|
|
|
echo "Linking $EXE failed"
|
|
|
|
cat -- $EXE.out
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
rm -- "$sharedlib_dir/applet.c" $EXE.out
|
|
|
|
strip -s --remove-section=.note --remove-section=.comment $EXE
|
|
|
|
echo "applet linked against libbusybox: $EXE"
|
|
|
|
|
|
|
|
done <applet.lst
|
|
|
|
fi
|