summaryrefslogtreecommitdiff
path: root/patches/glibc/2.2.2/glibc-2.2.2-export_fp_hw.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.2/glibc-2.2.2-export_fp_hw.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.2/glibc-2.2.2-export_fp_hw.patch')
-rw-r--r--patches/glibc/2.2.2/glibc-2.2.2-export_fp_hw.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/patches/glibc/2.2.2/glibc-2.2.2-export_fp_hw.patch b/patches/glibc/2.2.2/glibc-2.2.2-export_fp_hw.patch
new file mode 100644
index 0000000..a14e1d4
--- /dev/null
+++ b/patches/glibc/2.2.2/glibc-2.2.2-export_fp_hw.patch
@@ -0,0 +1,30 @@
+Fixes undefined symbol _fp_hw required by the ABI:
+readelf -s /opt/crosstool/i686-pc-linux-gnu/i686-unknown-linux-gnu/gcc-3.4.3-glibc-2.2.2/i686-unknown-linux-gnu/lib/crt1.o | grep fp_hw
+ 29: 00000000 4 NOTYPE GLOBAL DEFAULT UND _fp_hw
+Rumored to fix problems with icc, which gets upset at any symbol
+which is undefined, even if nobody cares about it.
+
+Revision 1.16, Thu Feb 22 19:57:34 2001 UTC (4 years, 2 months ago) by drepper
+Branch: MAIN
+CVS Tags: glibc-2_2_3
+Changes since 1.15: +1 -1 lines
+Diff to previous 1.15 (colored)
+
+(_fp_hw): Actually define label.
+
+===================================================================
+RCS file: /cvs/glibc/libc/sysdeps/i386/elf/start.S,v
+retrieving revision 1.15
+retrieving revision 1.16
+diff -u -r1.15 -r1.16
+--- libc/sysdeps/i386/elf/start.S 2001/02/03 21:34:54 1.15
++++ libc/sysdeps/i386/elf/start.S 2001/02/22 19:57:34 1.16
+@@ -85,7 +85,7 @@
+ meaningless since we don't support machines < 80386. */
+ .section .rodata
+ .globl _fp_hw
+- .long 3
++_fp_hw: .long 3
+ .size _fp_hw, 4
+
+ /* Define a symbol for the first piece of initialized data. */