diff options
author | Richard Purdie <richard@openedhand.com> | 2008-07-24 20:30:37 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-07-24 20:30:37 +0000 |
commit | 87796f6ce02df30375057fac934685d109f99be3 (patch) | |
tree | 419fb9887ca981ada36fc0071c8078f35d4f82f2 /meta/packages/glibc/files | |
parent | f9651fac68352c9cfa6c616ae50f711c32e7bf32 (diff) | |
download | openembedded-core-87796f6ce02df30375057fac934685d109f99be3.tar.gz openembedded-core-87796f6ce02df30375057fac934685d109f99be3.tar.bz2 openembedded-core-87796f6ce02df30375057fac934685d109f99be3.tar.xz openembedded-core-87796f6ce02df30375057fac934685d109f99be3.zip |
gcc: Add toolchain build process changes from OE which adds gcc-cross-intermediate and removes glibc-intermediate based on a patch from Khem Raj as will be aplied to OE.dev making the build process much more rebust/stable/correct.
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4943 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/glibc/files')
-rw-r--r-- | meta/packages/glibc/files/glibc-2.6.1-use-short-for-fnstsw.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/packages/glibc/files/glibc-2.6.1-use-short-for-fnstsw.patch b/meta/packages/glibc/files/glibc-2.6.1-use-short-for-fnstsw.patch new file mode 100644 index 000000000..697922927 --- /dev/null +++ b/meta/packages/glibc/files/glibc-2.6.1-use-short-for-fnstsw.patch @@ -0,0 +1,30 @@ +Source: http://sourceware.org/ml/libc-alpha/2008-01/msg00017.html + +I am checking this x86 assembler patch: + +http://sourceware.org/ml/binutils/2008-01/msg00148.html + +to check operand size. fnstsw stores 16bit into %ax. The upper +16bit of %eax is unchanged. The new assembler will disallow +"fnstsw %eax". Here is a patch for glibc. + + +H.J. + +--- + sysdeps/i386/fpu/ftestexcept.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +Index: glibc-2.6.1/sysdeps/i386/fpu/ftestexcept.c +=================================================================== +--- glibc-2.6.1.orig/sysdeps/i386/fpu/ftestexcept.c 2008-07-19 11:00:45.000000000 -0700 ++++ glibc-2.6.1/sysdeps/i386/fpu/ftestexcept.c 2008-07-19 11:01:25.000000000 -0700 +@@ -26,7 +26,7 @@ + int + fetestexcept (int excepts) + { +- int temp; ++ short temp; + int xtemp = 0; + + /* Get current exceptions. */ |