summaryrefslogtreecommitdiffstats
path: root/libc/sysdeps/linux/powerpc/__longjmp.S
Commit message (Collapse)AuthorAgeFilesLines
* Rehash the PowerPC e500 port to avoid creating symlinks Joakim Tjernlund2007-02-121-0/+94
| | | | | | | in the powerpc arch code and make more code common with classic PowerPC. From Steve Papacharalambous Lets hope I didn't break something.
* Add support for PowerPC e500, libc part only.Joakim Tjernlund2007-02-041-84/+0
| | | | | Math support to be done. From Steve Papacharalambous, stevep@freescale.com
* hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵Peter S. Mazinger2006-01-141-0/+2
| | | | missing headers, other jump relocs removed
* rohde at soap dot adsl dot dk writes:Eric Andersen2004-01-021-1/+1
| | | | | | | | The macro to do some floating point checks in libc/sysdeps/linux/powerpc/setjmp.S is incorrect. The following should fix it. Same applies to uClibc/libc/sysdeps/linux/powerpc/__longjmp.S Hope there aren't other files I've missed :)
* As noted by Felix Radensky back on 16 Mar:Eric Andersen2003-07-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | I've tried several times to compile uClibc with soft-float (both gcc-3.2.2 toolchain and wrapper), but applications compiled with uClibc always failed with "Invalid instruction". So I ended up disabling floating point at all and this works well. I also has no problem with glibc from Monta Vista, which is compiled with soft-float. My processor is PowerPC 405GP. Maybe the problem is in FP() macro definition in libc/sysdeps/linux/powerpc/setjmp.S and libc/sysdeps/linux/powerpc/__longjmp.S #ifdef __UCLIBC_HAS_FLOATS__ #define FP(x...) x #else #define FP(x...) #endif which should be defined as if defined __UCLIBC_HAS_FLOATS__ && ! defined __UCLIBC_HAS_SOFT_FLOAT__ #define FP(x...) x #else #define FP(x...) #endif
* Rework powerpc to be consistant with the other arches.Eric Andersen2002-02-041-0/+82
-Erik