1) Allow selection of binutils/gcc/gdb/kernel headers to build, although some of the older tool patches probably need updating. 2) Rework gdb build so that remote debugging now works with gdbserver. 3) Misc. other package updates.3) Misc. other package updates.3) Misc. other package updates.
32 lines
939 B
Diff
32 lines
939 B
Diff
Get around an odd build failure.
|
|
diff -urN binutils-2.14.90.0.6/configure binutils-2.14.90.0.6-uClibc/configure
|
|
--- binutils-2.14.90.0.6/configure 2003-08-21 10:29:32.000000000 -0500
|
|
+++ binutils-2.14.90.0.6-uClibc/configure 2004-01-07 05:43:40.000000000 -0600
|
|
@@ -906,6 +906,11 @@
|
|
fi
|
|
|
|
|
|
+case "$target" in
|
|
+ *-*-*-uclibc*)
|
|
+ build_modules=
|
|
+ ;;
|
|
+esac
|
|
################################################################################
|
|
|
|
srcname="gnu development package"
|
|
diff -urN binutils-2.14.90.0.6/configure.in binutils-2.14.90.0.6-uClibc/configure.in
|
|
--- binutils-2.14.90.0.6/configure.in 2003-08-21 10:29:30.000000000 -0500
|
|
+++ binutils-2.14.90.0.6-uClibc/configure.in 2004-01-07 05:44:02.000000000 -0600
|
|
@@ -178,6 +178,11 @@
|
|
fi
|
|
|
|
|
|
+case "$target" in
|
|
+ *-*-*-uclibc*)
|
|
+ build_modules=
|
|
+ ;;
|
|
+esac
|
|
################################################################################
|
|
|
|
srcname="gnu development package"
|