diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-05-17 22:10:48 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-05-17 22:10:48 +0000 |
commit | 340c3e20301f33871c530b6095c77fe178f05e98 (patch) | |
tree | cbe5702adb3bc0e3ae80359e673144c55a98c9d9 /patches/uClibc | |
parent | 8d3f0a8781cc25e75db3db4a9195816e7d3da902 (diff) | |
download | crosstool-ng-340c3e20301f33871c530b6095c77fe178f05e98.tar.gz crosstool-ng-340c3e20301f33871c530b6095c77fe178f05e98.tar.bz2 crosstool-ng-340c3e20301f33871c530b6095c77fe178f05e98.zip |
Make the debug config menu a generated file.
Add a uClibc-0.9.29 patch directory with one patch (from me!).
Update the armeb-unknown-linux-uclibc sample to uClibc-0.9.29.
Some eyecandy in the gdb build process.
Diffstat (limited to 'patches/uClibc')
-rw-r--r-- | patches/uClibc/0.9.29/500-headers-no-cross-gcc.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/patches/uClibc/0.9.29/500-headers-no-cross-gcc.patch b/patches/uClibc/0.9.29/500-headers-no-cross-gcc.patch new file mode 100644 index 00000000..bfad3dfa --- /dev/null +++ b/patches/uClibc/0.9.29/500-headers-no-cross-gcc.patch @@ -0,0 +1,13 @@ +Index: uClibc/Makefile.in +=================================================================== +--- uClibc/Makefile.in (revision 18643) ++++ uClibc/Makefile.in (working copy) +@@ -96,7 +96,7 @@ + cd $(top_builddir); \ + tmp=`mktemp include/bits/sysnum.h.XXXXXX 2>/dev/null`; \ + [ -z "$$tmp" ] && tmp='include/bits/sysnum.h.new'; \ +- KERNEL_HEADERS="${KERNEL_HEADERS}" top_builddir=. CC="$(CC) $(CPU_CFLAGS)" $(SHELL) extra/scripts/gen_bits_syscall_h.sh > $$tmp; \ ++ KERNEL_HEADERS="${KERNEL_HEADERS}" top_builddir=. CC=$(HOSTCC) $(SHELL) extra/scripts/gen_bits_syscall_h.sh > $$tmp; \ + if cmp include/bits/sysnum.h $$tmp >/dev/null 2>&1; then \ + $(RM) $$tmp; \ + else \ |