summaryrefslogtreecommitdiff
path: root/patches/glibc/2.2.5/sh-setjmp-fix.patch
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-02-24 11:00:05 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-02-24 11:00:05 (GMT)
commit1906cf93f86d8d66f45f90380a8d3da25c087ee5 (patch)
tree90916c99abe1f1ec26709ee420e6c349eda4670a /patches/glibc/2.2.5/sh-setjmp-fix.patch
parent2609573aede4ce198b3462976725b25eb1637d2e (diff)
Add the full crosstool-NG sources to the new repository of its own.
You might just say: 'Yeah! crosstool-NG's got its own repo!". Unfortunately, that's because the previous repo got damaged beyond repair and I had no backup. That means I'm putting backups in place in the afternoon. That also means we've lost history... :-(
Diffstat (limited to 'patches/glibc/2.2.5/sh-setjmp-fix.patch')
-rw-r--r--patches/glibc/2.2.5/sh-setjmp-fix.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/patches/glibc/2.2.5/sh-setjmp-fix.patch b/patches/glibc/2.2.5/sh-setjmp-fix.patch
new file mode 100644
index 0000000..3f86a5e
--- /dev/null
+++ b/patches/glibc/2.2.5/sh-setjmp-fix.patch
@@ -0,0 +1,29 @@
+Fixes glibc 'make tests' failure running isomac
+
+make[2]: *** [/home3/dank/wk/ixos/dap_interim/linux/3rdParty/crosstool/crosstool-0.15/build/sh4-unknown-linux-gnu/gcc-ss-3_3-20030714-glibc-2.2.5/build-glibc/stdlib/isomac.out] Error 2
+
+isomac.out contains:
+...
+setjmp.h
+#define JB_SIZE (4 * 15)
+
+See http://sources.redhat.com/ml/libc-hacker/2002-11/msg00009.html
+and http://www.schweikhardt.net/isomac.c.html
+
+===================================================================
+RCS file: /cvs/glibc/libc/sysdeps/sh/bits/setjmp.h,v
+retrieving revision 1.4
+retrieving revision 1.5
+diff -u -r1.4 -r1.5
+--- libc/sysdeps/sh/bits/setjmp.h 2001/07/06 04:56:03 1.4
++++ libc/sysdeps/sh/bits/setjmp.h 2002/11/06 00:08:30 1.5
+@@ -42,7 +42,9 @@
+ } __jmp_buf[1];
+ #endif
+
++#if defined __USE_MISC || defined _ASM
+ #define JB_SIZE (4 * 15)
++#endif
+
+ /* Test if longjmp to JMPBUF would unwind the frame
+ containing a local variable at ADDRESS. */