Ignore:
Timestamp:
Mar 17, 2011, 6:04:48 PM (14 years ago)
Author:
bird
Message:

0.6: Backported r3712 & r3713: stdio.h,features.h: Don't use gcc's 'extern inline' feature with 4.3.0 and later. Fixes #222.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/libc-0.6/src/emx/include/features.h

    r2288 r3714  
    368368
    369369/* Decide whether we can define 'extern inline' functions in headers.  */
    370 #if __GNUC_PREREQ (2, 7) && defined __OPTIMIZE__ \
     370#if __GNUC_PREREQ (2, 7) && !__GNUC_PREREQ (4, 3) && defined __OPTIMIZE__ \
    371371    && !defined __OPTIMIZE_SIZE__ && !defined __NO_INLINE__
    372372# define __USE_EXTERN_INLINES   1
Note: See TracChangeset for help on using the changeset viewer.