CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
automake: fixed compilation
[crossrootfs.git] / glibc / glibc-2.9-arm_setjmp_fix-1.patch
CommitLineData
6dca1d21
JB
1Submitted By: Joe Ciccone <jciccone@gmail.com>
2Date: 2009-03-31
3Initial Package Version: 2.9
4Origin: http://sourceware.org/ml/libc-ports/2008-12/msg00011.html
5Upstream Status: Unknown
6Descrpition: All the other arm setjmp.S files provide a hidden alias for
7 __sigsetjmp. Without this the build fails.
8
9diff -Naur glibc-2.9.orig/ports/sysdeps/arm/fpu/setjmp.S glibc-2.9/ports/sysdeps/arm/fpu/setjmp.S
10--- glibc-2.9.orig/ports/sysdeps/arm/fpu/setjmp.S 2001-07-06 00:55:48.000000000 -0400
11+++ glibc-2.9/ports/sysdeps/arm/fpu/setjmp.S 2009-03-31 16:54:58.283164106 -0400
12@@ -33,3 +33,5 @@
13 /* Make a tail call to __sigjmp_save; it takes the same args. */
14 B PLTJMP(C_SYMBOL_NAME(__sigjmp_save))
15 END (__sigsetjmp)
16+
17+hidden_def (__sigsetjmp)