source: clfs-sysroot/patches/glibc-2.5-hppa_nptl-1.patch@ f23b616

Last change on this file since f23b616 was fd94a60, checked in by Joe Ciccone <jciccone@…>, 18 years ago

Add a glibc NPTL patch for hppa.

  • Property mode set to 100644
File size: 4.0 KB
RevLine 
[fd94a60]1Submitted By: Joe Ciccone <jciccone@linuxfromscratch.org>
2Date: 2006-11-30
3Initial Package Version: 2.5
4Upstream Status: In CVS
5Origin: http://lists.parisc-linux.org/pipermail/parisc-linux/2006-July/029549.html
6Description: Adds the TLS reloc numbers to elf.h
7 Works around a bug in the data initialization.
8 Adds a missing macro.
9
10diff -Naur glibc-2.5.orig/elf/elf.h glibc-2.5/elf/elf.h
11--- glibc-2.5.orig/elf/elf.h 2006-11-30 16:26:56.000000000 -0500
12+++ glibc-2.5/elf/elf.h 2006-11-30 16:27:05.000000000 -0500
13@@ -1708,6 +1708,8 @@
14 #define R_PARISC_LTOFF_FPTR14R 62 /* LT-rel. fct ptr, right 14 bits. */
15 #define R_PARISC_FPTR64 64 /* 64 bits function address. */
16 #define R_PARISC_PLABEL32 65 /* 32 bits function address. */
17+#define R_PARISC_PLABEL21L 66 /* Left 21 bits of fdesc address */
18+#define R_PARISC_PLABEL14R 70 /* Right 14 bits of fdesc address */
19 #define R_PARISC_PCREL64 72 /* 64 bits PC-rel. address. */
20 #define R_PARISC_PCREL22F 74 /* 22 bits PC-rel. address. */
21 #define R_PARISC_PCREL14WR 75 /* PC-rel. address, right 14 bits. */
22@@ -1768,6 +1770,29 @@
23 #define R_PARISC_LTOFF_TP16F 229 /* 16 bits LT-TP-rel. address. */
24 #define R_PARISC_LTOFF_TP16WF 230 /* 16 bits LT-TP-rel. address. */
25 #define R_PARISC_LTOFF_TP16DF 231 /* 16 bits LT-TP-rel. address. */
26+
27+#define R_PARISC_GNU_VTENTRY 232
28+#define R_PARISC_GNU_VTINHERIT 233
29+#define R_PARISC_TLS_GD21L 234 /* GD 21-bit left */
30+#define R_PARISC_TLS_GD14R 235 /* GD 14-bit right */
31+#define R_PARISC_TLS_GDCALL 236 /* GD call to __t_g_a */
32+#define R_PARISC_TLS_LDM21L 237 /* LD module 21-bit left */
33+#define R_PARISC_TLS_LDM14R 238 /* LD module 14-bit right */
34+#define R_PARISC_TLS_LDMCALL 239 /* LD module call to __t_g_a */
35+#define R_PARISC_TLS_LDO21L 240 /* LD offset 21-bit left */
36+#define R_PARISC_TLS_LDO14R 241 /* LD offset 14-bit right */
37+#define R_PARISC_TLS_DTPMOD32 242 /* DTP module 32-bit */
38+#define R_PARISC_TLS_DTPMOD64 243 /* DTP module 64-bit */
39+#define R_PARISC_TLS_DTPOFF32 244 /* DTP offset 32-bit */
40+#define R_PARISC_TLS_DTPOFF64 245 /* DTP offset 32-bit */
41+
42+#define R_PARISC_TLS_LE21L R_PARISC_TPREL21L
43+#define R_PARISC_TLS_LE14R R_PARISC_TPREL14R
44+#define R_PARISC_TLS_IE21L R_PARISC_LTOFF_TP21L
45+#define R_PARISC_TLS_IE14R R_PARISC_LTOFF_TP14R
46+#define R_PARISC_TLS_TPREL32 R_PARISC_TPREL32
47+#define R_PARISC_TLS_TPREL64 R_PARISC_TPREL64
48+
49 #define R_PARISC_HIRESERVE 255
50
51 /* Legal values for p_type field of Elf32_Phdr/Elf64_Phdr. */
52diff -Naur glibc-2.5.orig/elf/rtld.c glibc-2.5/elf/rtld.c
53--- glibc-2.5.orig/elf/rtld.c 2006-11-30 16:26:56.000000000 -0500
54+++ glibc-2.5/elf/rtld.c 2006-11-30 16:27:05.000000000 -0500
55@@ -379,14 +379,14 @@
56 know it is available. We do not have to clear the memory if we
57 do not have to use the temporary bootstrap_map. Global variables
58 are initialized to zero by default. */
59-#ifndef DONT_USE_BOOTSTRAP_MAP
60+#if !defined DONT_USE_BOOTSTRAP_MAP
61 # ifdef HAVE_BUILTIN_MEMSET
62 __builtin_memset (bootstrap_map.l_info, '\0', sizeof (bootstrap_map.l_info));
63 # else
64- for (size_t cnt = 0;
65- cnt < sizeof (bootstrap_map.l_info) / sizeof (bootstrap_map.l_info[0]);
66- ++cnt)
67- bootstrap_map.l_info[cnt] = 0;
68+ /* Clear the whole bootstrap_map structure */
69+ for (char *cnt = (char *)&(bootstrap_map);
70+ cnt < ((char *)&(bootstrap_map) + sizeof (bootstrap_map));
71+ *cnt++ = '\0');
72 # endif
73 # if USE___THREAD
74 bootstrap_map.l_tls_modid = 0;
75diff -Naur glibc-2.5.orig/sysdeps/unix/sysv/linux/getcwd.c glibc-2.5/sysdeps/unix/sysv/linux/getcwd.c
76--- glibc-2.5.orig/sysdeps/unix/sysv/linux/getcwd.c 2006-11-30 16:26:57.000000000 -0500
77+++ glibc-2.5/sysdeps/unix/sysv/linux/getcwd.c 2006-11-30 16:27:05.000000000 -0500
78@@ -31,6 +31,9 @@
79
80 #include <kernel-features.h>
81
82+#ifndef MAX
83+# define MAX(a, b) ((a) < (b) ? (b) : (a))
84+#endif
85
86 /* If we compile the file for use in ld.so we don't need the feature
87 that getcwd() allocates the buffers itself. */
Note: See TracBrowser for help on using the repository browser.