patches/uClibc/0.9.29/200-fix-internal_function-definition.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Jun 24 16:24:09 2008 +0000 (2008-06-24)
changeset 611 eac4dc8da8a9
permissions -rw-r--r--
New patches from Ioannis E. VENETIS to allow building more up-to-date Alpha x-compilers.
Some patches are still missing, though.
See: http://sourceware.org/ml/libc-help/2008-06/msg00061.html

/trunk/patches/glibc/2.5.1/270-glibc-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/glibc/2.5.1/280-glibc-alpha-sigsuspend.patch | 24 24 0 0 ++++++++++
/trunk/patches/glibc/2.5/270-glibc-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/glibc/2.5/280-glibc-alpha-sigsuspend.patch | 24 24 0 0 ++++++++++
/trunk/patches/glibc/linuxthreads-2.3.6/270-glibc-linuxthreads-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/gcc/4.2.0/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.1/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.3.0/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.2/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.3.1/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.3/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
11 files changed, 225 insertions(+)
     1 Index: uClibc/libc/sysdeps/linux/i386/bits/uClibc_arch_features.h
     2 ===================================================================
     3 --- uClibc/libc/sysdeps/linux/i386/bits/uClibc_arch_features.h	(revision 18898)
     4 +++ uClibc/libc/sysdeps/linux/i386/bits/uClibc_arch_features.h	(working copy)
     5 @@ -42,6 +42,8 @@
     6  /* define if target supports IEEE signed zero floats */
     7  #define __UCLIBC_HAVE_SIGNED_ZERO__
     8  
     9 +#if defined _LIBC
    10  #define internal_function __attribute__ ((regparm (3), stdcall))
    11 +#endif
    12  
    13  #endif /* _BITS_UCLIBC_ARCH_FEATURES_H */
    14 Index: uClibc/include/libc-symbols.h
    15 ===================================================================
    16 --- uClibc/include/libc-symbols.h	(revision 18898)
    17 +++ uClibc/include/libc-symbols.h	(working copy)
    18 @@ -22,6 +22,16 @@
    19  #ifndef _LIBC_SYMBOLS_H
    20  #define _LIBC_SYMBOLS_H	1
    21  
    22 +/* This is defined for the compilation of all C library code.  features.h
    23 +   tests this to avoid inclusion of stubs.h while compiling the library,
    24 +   before stubs.h has been generated.  Some library code that is shared
    25 +   with other packages also tests this symbol to see if it is being
    26 +   compiled as part of the C library.  We must define this before including
    27 +   config.h, because it makes some definitions conditional on whether libc
    28 +   itself is being compiled, or just some generator program.  */
    29 +#define _LIBC	1
    30 +
    31 +
    32  /* This file's macros are included implicitly in the compilation of every
    33     file in the C library by -imacros.
    34  
    35 @@ -40,16 +50,6 @@
    36  
    37  #include <bits/uClibc_arch_features.h>
    38  
    39 -
    40 -/* This is defined for the compilation of all C library code.  features.h
    41 -   tests this to avoid inclusion of stubs.h while compiling the library,
    42 -   before stubs.h has been generated.  Some library code that is shared
    43 -   with other packages also tests this symbol to see if it is being
    44 -   compiled as part of the C library.  We must define this before including
    45 -   config.h, because it makes some definitions conditional on whether libc
    46 -   itself is being compiled, or just some generator program.  */
    47 -#define _LIBC	1
    48 -
    49  /* Enable declarations of GNU extensions, since we are compiling them.  */
    50  #define _GNU_SOURCE	1
    51