Commit | Line | Data |
---|---|---|
6dca1d21 JB |
1 | Submitted By: Joe Ciccone <jciccone@gmail.com> |
2 | Date: 2009-03-31 | |
3 | Initial Package Version: 2.9 | |
4 | Origin: http://sourceware.org/ml/libc-ports/2008-12/msg00011.html | |
5 | Upstream Status: Unknown | |
6 | Descrpition: All the other arm setjmp.S files provide a hidden alias for | |
7 | __sigsetjmp. Without this the build fails. | |
8 | ||
9 | diff -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) |