Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 149292 | Differences between
and this patch

Collapse All | Expand All

(-)gcc-4.3.2/gcc/crtstuff.c.orig (-2 / +1 lines)
Lines 94-101 Link Here
94
#include <link.h>
94
#include <link.h>
95
/* uClibc pretends to be glibc 2.2 and DT_CONFIG is defined in its link.h.
95
/* uClibc pretends to be glibc 2.2 and DT_CONFIG is defined in its link.h.
96
   But it doesn't use PT_GNU_EH_FRAME ELF segment currently.  */
96
   But it doesn't use PT_GNU_EH_FRAME ELF segment currently.  */
97
# if !defined(__UCLIBC__) \
97
# if (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2) \
98
     && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2) \
99
     || (__GLIBC__ == 2 && __GLIBC_MINOR__ == 2 && defined(DT_CONFIG)))
98
     || (__GLIBC__ == 2 && __GLIBC_MINOR__ == 2 && defined(DT_CONFIG)))
100
#  define USE_PT_GNU_EH_FRAME
99
#  define USE_PT_GNU_EH_FRAME
101
# endif
100
# endif

Return to bug 149292