patches/glibc/2.3.2/glibc-2.3.2-sparc32-sysdep.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Feb 24 11:00:05 2007 +0000 (2007-02-24)
changeset 1 eeea35fbf182
permissions -rw-r--r--
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... :-(
yann@1
     1
Fixes the error
yann@1
     2
yann@1
     3
<stdin>: Assembler messages:
yann@1
     4
<stdin>:2: Error: junk at end of line, first unrecognized character is `1' ...
yann@1
     5
<stdin>:2: Error: Illegal operands: PC-relative operand can't be a constant
yann@1
     6
make[4]: *** [/home/dank/wk/crosstool-0.28-rc13/build/sparc-unknown-linux-gnu/gcc-3.4.0-glibc-2.3.2/build-glibc/io/rtld-open.os] Error 1
yann@1
     7
make[4]: Leaving directory `/home/dank/wk/crosstool-0.28-rc13/build/sparc-unknown-linux-gnu/gcc-3.4.0-glibc-2.3.2/glibc-2.3.2/io'
yann@1
     8
make[3]: *** [/home/dank/wk/crosstool-0.28-rc13/build/sparc-unknown-linux-gnu/gcc-3.4.0-glibc-2.3.2/build-glibc/io/rtld-xstat64.os] Error 2
yann@1
     9
make[3]: Leaving directory `/home/dank/wk/crosstool-0.28-rc13/build/sparc-unknown-linux-gnu/gcc-3.4.0-glibc-2.3.2/glibc-2.3.2/elf'
yann@1
    10
make[2]: *** [/home/dank/wk/crosstool-0.28-rc13/build/sparc-unknown-linux-gnu/gcc-3.4.0-glibc-2.3.2/build-glibc/elf/rtld-libc.a] Error 2
yann@1
    11
make[2]: Leaving directory `/home/dank/wk/crosstool-0.28-rc13/build/sparc-unknown-linux-gnu/gcc-3.4.0-glibc-2.3.2/glibc-2.3.2/elf'
yann@1
    12
make[1]: *** [elf/subdir_lib] Error 2
yann@1
    13
yann@1
    14
when building glibc-2.3.2 with gcc-3.4.0 for sparc32.
yann@1
    15
yann@1
    16
The .s file left behind by -save-temps contains the big long line
yann@1
    17
yann@1
    18
.text; .global __libc_open; .align 4; __libc_open:; .type __libc_open,@function;; mov 5, %g1; ta 0x10; bcs __syscall_error_handler; nop; .section .gnu.linkonce.t. 1 .get_pic.l7,"ax",@progbits; .globl 1 .get_pic.l7; .hidden 1 .get_pic.l7; .type 1 .get_pic.l7,@function; 1 .get_pic.l7: retl; add %o7, %l7, %l7; .previous; .subsection 3; __syscall_error_handler: save %sp,-96,%sp; sethi %hi(_GLOBAL_OFFSET_TABLE_-4), %l7; call 1 .get_pic.l7; add %l7, %lo(_GLOBAL_OFFSET_TABLE_+4), %l7; ld [%l7 + errno], %l0; st %i0, [%l0]; jmpl %i7+8, %g0; restore %g0, -1, %o0; .previous;
yann@1
    19
 retl; nop 
yann@1
    20
 
yann@1
    21
The error messages appear to refer to the '1 .get_pic.17', e.g.
yann@1
    22
        .globl 1 .get_pic.l7; .hidden 1 .get_pic.l7;
yann@1
    23
which seems to come from
yann@1
    24
glibc-2.3.2/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h
yann@1
    25
where it appears originally as
yann@1
    26
        .globl __sparc.get_pic.l7;                                      \
yann@1
    27
        .hidden __sparc.get_pic.l7;                                     \
yann@1
    28
yann@1
    29
Note that __sparc is a predefined symbol on Solaris and some other environments;
yann@1
    30
it's not surprising to see it predefined on Linux, too.
yann@1
    31
yann@1
    32
yann@1
    33
--- glibc-2.3.2/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h.old	2004-05-15 10:23:11.000000000 -0700
yann@1
    34
+++ glibc-2.3.2/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h	2004-05-15 10:24:12.000000000 -0700
yann@1
    35
@@ -39,6 +39,11 @@
yann@1
    36
 #undef END
yann@1
    37
 #undef LOC
yann@1
    38
 
yann@1
    39
+/* gcc-3.4.0 seems to expand __sparc as a predefined preprocessor symbol, which we don't want here */
yann@1
    40
+#ifdef __sparc
yann@1
    41
+#undef __sparc
yann@1
    42
+#endif
yann@1
    43
+
yann@1
    44
 #define ENTRY(name) \
yann@1
    45
 	.global C_SYMBOL_NAME(name); \
yann@1
    46
 	.align 4;\