diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-07-21 20:31:26 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-07-21 20:31:26 +0000 |
commit | 1293ffef115e21ee0a9bd5e8a4ae9a75e5142a63 (patch) | |
tree | a81586ae5131bff48eb2772f69cfaf00995f1603 /patches/uClibc/0.9.29/200-fix-internal_function-definition.patch | |
parent | 55f66b762cefac238226b6af1672bc8d15d68ca3 (diff) | |
download | crosstool-ng-1293ffef115e21ee0a9bd5e8a4ae9a75e5142a63.tar.gz crosstool-ng-1293ffef115e21ee0a9bd5e8a4ae9a75e5142a63.tar.bz2 crosstool-ng-1293ffef115e21ee0a9bd5e8a4ae9a75e5142a63.zip |
Vampirise two more patches against uClibc-0.9.29 from buildroot.
Diffstat (limited to 'patches/uClibc/0.9.29/200-fix-internal_function-definition.patch')
-rw-r--r-- | patches/uClibc/0.9.29/200-fix-internal_function-definition.patch | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/patches/uClibc/0.9.29/200-fix-internal_function-definition.patch b/patches/uClibc/0.9.29/200-fix-internal_function-definition.patch new file mode 100644 index 00000000..9b88d826 --- /dev/null +++ b/patches/uClibc/0.9.29/200-fix-internal_function-definition.patch @@ -0,0 +1,51 @@ +Index: uClibc/libc/sysdeps/linux/i386/bits/uClibc_arch_features.h +=================================================================== +--- uClibc/libc/sysdeps/linux/i386/bits/uClibc_arch_features.h (revision 18898) ++++ uClibc/libc/sysdeps/linux/i386/bits/uClibc_arch_features.h (working copy) +@@ -42,6 +42,8 @@ + /* define if target supports IEEE signed zero floats */ + #define __UCLIBC_HAVE_SIGNED_ZERO__ + ++#if defined _LIBC + #define internal_function __attribute__ ((regparm (3), stdcall)) ++#endif + + #endif /* _BITS_UCLIBC_ARCH_FEATURES_H */ +Index: uClibc/include/libc-symbols.h +=================================================================== +--- uClibc/include/libc-symbols.h (revision 18898) ++++ uClibc/include/libc-symbols.h (working copy) +@@ -22,6 +22,16 @@ + #ifndef _LIBC_SYMBOLS_H + #define _LIBC_SYMBOLS_H 1 + ++/* This is defined for the compilation of all C library code. features.h ++ tests this to avoid inclusion of stubs.h while compiling the library, ++ before stubs.h has been generated. Some library code that is shared ++ with other packages also tests this symbol to see if it is being ++ compiled as part of the C library. We must define this before including ++ config.h, because it makes some definitions conditional on whether libc ++ itself is being compiled, or just some generator program. */ ++#define _LIBC 1 ++ ++ + /* This file's macros are included implicitly in the compilation of every + file in the C library by -imacros. + +@@ -40,16 +50,6 @@ + + #include <bits/uClibc_arch_features.h> + +- +-/* This is defined for the compilation of all C library code. features.h +- tests this to avoid inclusion of stubs.h while compiling the library, +- before stubs.h has been generated. Some library code that is shared +- with other packages also tests this symbol to see if it is being +- compiled as part of the C library. We must define this before including +- config.h, because it makes some definitions conditional on whether libc +- itself is being compiled, or just some generator program. */ +-#define _LIBC 1 +- + /* Enable declarations of GNU extensions, since we are compiling them. */ + #define _GNU_SOURCE 1 + |