RE: testsuite trigraphs.c failure due to cygwin

2007-06-07 Thread Dave Korn
On 06 June 2007 14:35, Tim Prince wrote: > I have patched stdio.h, but it may not be your latest recommendation. This does indeed turn out to be the problem. In your local patched stdio.h you have: #if defined(__GNUC__) && !defined(__GNUC_STDC_INLINE__) #define ELIDABLE_INLINE extern inline #

RE: testsuite trigraphs.c failure due to cygwin

2007-06-06 Thread Dave Korn
On 06 June 2007 14:35, Tim Prince wrote: [ artimi dot org removed from Cc: line as it does not exist. ] >> Tim, are you sure you have the patched version of stdio.h in your >> /usr/include, or are you trying a combined build? >> > > I have patched stdio.h, but it may not be your latest reco

Re: testsuite trigraphs.c failure due to cygwin

2007-06-06 Thread Tim Prince
[EMAIL PROTECTED] wrote: On 04 June 2007 23:43, Ian Lance Taylor wrote: "Timothy C Prince" writes: [ quoting an earlier post of mine ] So, am I correct to believe that we need to use plain 'inline' for c99 after gcc 4.4, and 'extern inline' before that? That is, I think I need to writ

RE: testsuite trigraphs.c failure due to cygwin

2007-06-06 Thread Dave Korn
On 04 June 2007 23:43, Ian Lance Taylor wrote: > "Timothy C Prince" writes: [ quoting an earlier post of mine ] >> So, am I correct to believe that we need to use plain 'inline' for c99 >> after gcc 4.4, and 'extern inline' before that? That is, I think I need >> to write a test that looks

Re: testsuite trigraphs.c failure due to cygwin

2007-06-04 Thread Ian Lance Taylor
"Timothy C Prince" <[EMAIL PROTECTED]> writes: > So, am I correct to believe that we need to use plain 'inline' for c99 > after gcc 4.4, and 'extern inline' before that? That is, I think I need to > write a test that looks like... > > > #if ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MIN

testsuite trigraphs.c failure due to cygwin

2007-06-04 Thread Timothy C Prince
-Original Message- From: "Timothy C Prince" <[EMAIL PROTECTED]> To: gcc@gcc.gnu.org Date: Mon, 04 Jun 2007 16:20:34 + In the message http://gcc.gnu.org/ml/gcc/2007-03/msg01088.html Dave Korn wrote: So, am I correct to believe that we need to use plain 'inline' for c99 after gcc