public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/38182]  New: stddef.h assumes machinee/ansi.h defines _ANSI_H_
@ 2008-11-19 20:31 aran at 100acres dot us
  2008-11-19 20:34 ` [Bug c/38182] " aran at 100acres dot us
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: aran at 100acres dot us @ 2008-11-19 20:31 UTC (permalink / raw)
  To: gcc-bugs

GCC fails on NetBSD 5.x because stddef.h assumes that machine/ansi.h defines
_ANSI_H_ as its code guard.  This prevents the definition of size_t.


-- 
           Summary: stddef.h assumes machinee/ansi.h defines _ANSI_H_
           Product: gcc
           Version: 4.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: aran at 100acres dot us
 GCC build triplet: i386-unknown-netbsdelf5.99.02
  GCC host triplet: i386-unknown-netbsdelf5.99.02
GCC target triplet: i386-unknown-netbsdelf5.99.02


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38182


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug c/38182] stddef.h assumes machinee/ansi.h defines _ANSI_H_
  2008-11-19 20:31 [Bug c/38182] New: stddef.h assumes machinee/ansi.h defines _ANSI_H_ aran at 100acres dot us
@ 2008-11-19 20:34 ` aran at 100acres dot us
  2009-02-11  4:32 ` [Bug target/38182] " hbent at cs dot oberlin dot edu
                   ` (14 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: aran at 100acres dot us @ 2008-11-19 20:34 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from aran at 100acres dot us  2008-11-19 20:32 -------
Created an attachment (id=16724)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=16724&action=view)
Patch for stddef.h

This patch ensures that _ANSI_H_ is defined after including machine/ansi.h.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38182


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug target/38182] stddef.h assumes machinee/ansi.h defines _ANSI_H_
  2008-11-19 20:31 [Bug c/38182] New: stddef.h assumes machinee/ansi.h defines _ANSI_H_ aran at 100acres dot us
  2008-11-19 20:34 ` [Bug c/38182] " aran at 100acres dot us
@ 2009-02-11  4:32 ` hbent at cs dot oberlin dot edu
  2009-02-19 21:46 ` aran at 100acres dot us
                   ` (13 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: hbent at cs dot oberlin dot edu @ 2009-02-11  4:32 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from hbent at cs dot oberlin dot edu  2009-02-11 04:32 -------
I am seeing this on NetBSD 5.99.7, and can confirm that this prevents gcc from
building at all on NetBSD 5.99.x.  Is there any way this can get into 4.4.0? 
It is a very simple fix and applies cleanly.


-- 

hbent at cs dot oberlin dot edu changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |hbent at cs dot oberlin dot
                   |                            |edu


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38182


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug target/38182] stddef.h assumes machinee/ansi.h defines _ANSI_H_
  2008-11-19 20:31 [Bug c/38182] New: stddef.h assumes machinee/ansi.h defines _ANSI_H_ aran at 100acres dot us
  2008-11-19 20:34 ` [Bug c/38182] " aran at 100acres dot us
  2009-02-11  4:32 ` [Bug target/38182] " hbent at cs dot oberlin dot edu
@ 2009-02-19 21:46 ` aran at 100acres dot us
  2009-03-23 19:31 ` prlw1 at cam dot ac dot uk
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: aran at 100acres dot us @ 2009-02-19 21:46 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from aran at 100acres dot us  2009-02-19 21:46 -------
Created an attachment (id=17333)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=17333&action=view)
Removes gcc's version of both stddef.h and sys/types.h

This patch removes gcc's version of stddef.h and the "fixed" version of
sys/types.h


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38182


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug target/38182] stddef.h assumes machinee/ansi.h defines _ANSI_H_
  2008-11-19 20:31 [Bug c/38182] New: stddef.h assumes machinee/ansi.h defines _ANSI_H_ aran at 100acres dot us
                   ` (2 preceding siblings ...)
  2009-02-19 21:46 ` aran at 100acres dot us
@ 2009-03-23 19:31 ` prlw1 at cam dot ac dot uk
  2009-03-23 20:35 ` joseph at codesourcery dot com
                   ` (11 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: prlw1 at cam dot ac dot uk @ 2009-03-23 19:31 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from prlw1 at cam dot ac dot uk  2009-03-23 19:31 -------
Just hit this bug. Either solution looks good (am about to test, but spent ages
reaching the same conclusion, so expect success for both) Anyone from gcc
listening?


-- 

prlw1 at cam dot ac dot uk changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |prlw1 at cam dot ac dot uk


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38182


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug target/38182] stddef.h assumes machinee/ansi.h defines _ANSI_H_
  2008-11-19 20:31 [Bug c/38182] New: stddef.h assumes machinee/ansi.h defines _ANSI_H_ aran at 100acres dot us
                   ` (3 preceding siblings ...)
  2009-03-23 19:31 ` prlw1 at cam dot ac dot uk
@ 2009-03-23 20:35 ` joseph at codesourcery dot com
  2009-03-23 20:45 ` prlw1 at cam dot ac dot uk
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: joseph at codesourcery dot com @ 2009-03-23 20:35 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from joseph at codesourcery dot com  2009-03-23 20:35 -------
Subject: Re:  stddef.h assumes machinee/ansi.h defines
 _ANSI_H_

The patch is obviously wrong (it changes the installed headers for all 
targets instead of setting USER_H to adjust the list for the target with 
this issue) and patches need to be submitted to gcc-patches following the 
instructions: http://gcc.gnu.org/contribute.html (which includes 
explaining the patch and how it fixes the problem).


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38182


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug target/38182] stddef.h assumes machinee/ansi.h defines _ANSI_H_
  2008-11-19 20:31 [Bug c/38182] New: stddef.h assumes machinee/ansi.h defines _ANSI_H_ aran at 100acres dot us
                   ` (4 preceding siblings ...)
  2009-03-23 20:35 ` joseph at codesourcery dot com
@ 2009-03-23 20:45 ` prlw1 at cam dot ac dot uk
  2009-03-23 20:54 ` joseph at codesourcery dot com
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: prlw1 at cam dot ac dot uk @ 2009-03-23 20:45 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from prlw1 at cam dot ac dot uk  2009-03-23 20:45 -------
(In reply to comment #5)
> The patch is obviously wrong (it changes the installed headers for all 
> targets instead of setting USER_H to adjust the list for the target with 
> this issue)

Care to explain more re USER_H? I tried to addIndex: stddef.h
===================================================================
--- stddef.h    (revision 145011)
+++ stddef.h    (working copy)
@@ -62,6 +62,20 @@
 #include <sys/_types.h>
 #endif

+#if defined(__NetBSD__)
+typedef _BSD_PTRDIFF_T_ ptrdiff_t;
+
+#ifdef  _BSD_SIZE_T_
+typedef _BSD_SIZE_T_    size_t;
+#undef  _BSD_SIZE_T_
+#endif
+
+#ifdef  _BSD_WCHAR_T_
+typedef _BSD_WCHAR_T_   wchar_t;
+#undef  _BSD_WCHAR_T_
+#endif
+#endif /* __NetBSD__ */
+
 /* In 4.3bsd-net2, machine/ansi.h defines these symbols, which are
    defined if the corresponding type is *not* defined.
    FreeBSD-2.1 defines _MACHINE_ANSI_H_ instead of _ANSI_H_ */

which allowed me to compile gfortran. libsup++ failed including time.h, which
behaved as though _BSD_SIZE_T_ was defined, but empty.

Simply put, if I gcc -E gcc/gcc/ginclude/stddef.h, size_t is not defined:

# 1 "stddef.h"
# 1 "<built-in>"
# 1 "<command line>"
# 1 "stddef.h"
# 58 "stddef.h"
# 1 "/usr/include/machine/ansi.h" 1 3 4
# 37 "/usr/include/machine/ansi.h" 3 4
# 1 "/usr/include/sys/cdefs.h" 1 3 4
# 59 "/usr/include/sys/cdefs.h" 3 4
# 1 "/usr/include/machine/cdefs.h" 1 3 4
# 60 "/usr/include/sys/cdefs.h" 2 3 4

# 1 "/usr/include/sys/cdefs_elf.h" 1 3 4
# 62 "/usr/include/sys/cdefs.h" 2 3 4
# 38 "/usr/include/machine/ansi.h" 2 3 4

# 1 "/usr/include/machine/int_types.h" 1 3 4
# 45 "/usr/include/machine/int_types.h" 3 4
typedef signed char __int8_t;
typedef unsigned char __uint8_t;
typedef short int __int16_t;
typedef unsigned short int __uint16_t;
typedef int __int32_t;
typedef unsigned int __uint32_t;





typedef long long int __int64_t;

typedef unsigned long long int __uint64_t;






typedef int __intptr_t;
typedef unsigned int __uintptr_t;
# 40 "/usr/include/machine/ansi.h" 2 3 4
# 73 "/usr/include/machine/ansi.h" 3 4
typedef union {
 __int64_t __mbstateL;
 char __mbstate8[128];
} __mbstate_t;
# 59 "stddef.h" 2


and machine/ansi.h defines _${MACHINE}_ANSI_H_ on NetBSD. If I gcc -E
/usr/include/stddef.h, size_t is defined.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38182


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug target/38182] stddef.h assumes machinee/ansi.h defines _ANSI_H_
  2008-11-19 20:31 [Bug c/38182] New: stddef.h assumes machinee/ansi.h defines _ANSI_H_ aran at 100acres dot us
                   ` (5 preceding siblings ...)
  2009-03-23 20:45 ` prlw1 at cam dot ac dot uk
@ 2009-03-23 20:54 ` joseph at codesourcery dot com
  2009-03-23 21:07 ` prlw1 at cam dot ac dot uk
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: joseph at codesourcery dot com @ 2009-03-23 20:54 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from joseph at codesourcery dot com  2009-03-23 20:53 -------
Subject: Re:  stddef.h assumes machinee/ansi.h defines
 _ANSI_H_

On Mon, 23 Mar 2009, prlw1 at cam dot ac dot uk wrote:

> ------- Comment #6 from prlw1 at cam dot ac dot uk  2009-03-23 20:45 -------
> (In reply to comment #5)
> > The patch is obviously wrong (it changes the installed headers for all 
> > targets instead of setting USER_H to adjust the list for the target with 
> > this issue)
> 
> Care to explain more re USER_H? I tried to addIndex: stddef.h

USER_H is GCC's mechanism to disable installing some of the headers, such 
as stddef.h, that it installs by default.  You're meant to set it in a 
target makefile fragment t-* instead of changing the global default 
definition in gcc/Makefile.in.  Thus, if NetBSD should have all the 
GCC-provided headers except for stddef.h, copy the default from 
gcc/Makefile.in to gcc/config/t-netbsd and remove stddef.h there (with a 
comment to say that it's stddef.h that's being removed).


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38182


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug target/38182] stddef.h assumes machinee/ansi.h defines _ANSI_H_
  2008-11-19 20:31 [Bug c/38182] New: stddef.h assumes machinee/ansi.h defines _ANSI_H_ aran at 100acres dot us
                   ` (6 preceding siblings ...)
  2009-03-23 20:54 ` joseph at codesourcery dot com
@ 2009-03-23 21:07 ` prlw1 at cam dot ac dot uk
  2009-03-24  6:16 ` aran at 100acres dot us
                   ` (7 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: prlw1 at cam dot ac dot uk @ 2009-03-23 21:07 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from prlw1 at cam dot ac dot uk  2009-03-23 21:07 -------
What about the first patch, which seems less drastic? (I think it would be
better to install gcc's stddef.h, so there is one thing less to remember when
upgrading gcc) It seems that if our machine/ansi.h defined _MACHINE_ANSI_H_
rather than _${MACHINE}_ANSI_H_, things would be happier. The first patch
defines _ANSI_H_ instead. Hmm I'll try both and see...


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38182


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug target/38182] stddef.h assumes machinee/ansi.h defines _ANSI_H_
  2008-11-19 20:31 [Bug c/38182] New: stddef.h assumes machinee/ansi.h defines _ANSI_H_ aran at 100acres dot us
                   ` (7 preceding siblings ...)
  2009-03-23 21:07 ` prlw1 at cam dot ac dot uk
@ 2009-03-24  6:16 ` aran at 100acres dot us
  2009-03-24 13:22 ` joseph at codesourcery dot com
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: aran at 100acres dot us @ 2009-03-24  6:16 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from aran at 100acres dot us  2009-03-24 06:16 -------
Created an attachment (id=17528)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=17528&action=view)
Removes problematic fixincludes and defines _ANSI_H in stddef.h

This is a combination of the other two patches.  GCC's version of stddef.h is
still installed and fixed for NetBSD.  The copy of sys/types.h is not
installed.


-- 

aran at 100acres dot us changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #16724|0                           |1
        is obsolete|                            |
  Attachment #17333|0                           |1
        is obsolete|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38182


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug target/38182] stddef.h assumes machinee/ansi.h defines _ANSI_H_
  2008-11-19 20:31 [Bug c/38182] New: stddef.h assumes machinee/ansi.h defines _ANSI_H_ aran at 100acres dot us
                   ` (8 preceding siblings ...)
  2009-03-24  6:16 ` aran at 100acres dot us
@ 2009-03-24 13:22 ` joseph at codesourcery dot com
  2009-03-24 13:32 ` joseph at codesourcery dot com
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: joseph at codesourcery dot com @ 2009-03-24 13:22 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from joseph at codesourcery dot com  2009-03-24 13:22 -------
Subject: Re:  stddef.h assumes machinee/ansi.h defines
 _ANSI_H_

On Tue, 24 Mar 2009, aran at 100acres dot us wrote:

> This is a combination of the other two patches.  GCC's version of stddef.h is
> still installed and fixed for NetBSD.  The copy of sys/types.h is not
> installed.

Once you have finished testing, please send the patch with ChangeLog 
entries and a self-contained explanation to gcc-patches as described in 
contribute.html.

Do not include the diffs to the generated file fixincl.x; the person 
committing it will need to regenerate it using a current autogen version 
(which would keep GPLv3 notices there rather than wrongly substituting 
GPLv2 notices).


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38182


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug target/38182] stddef.h assumes machinee/ansi.h defines _ANSI_H_
  2008-11-19 20:31 [Bug c/38182] New: stddef.h assumes machinee/ansi.h defines _ANSI_H_ aran at 100acres dot us
                   ` (9 preceding siblings ...)
  2009-03-24 13:22 ` joseph at codesourcery dot com
@ 2009-03-24 13:32 ` joseph at codesourcery dot com
  2009-03-24 15:49 ` aran at 100acres dot us
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: joseph at codesourcery dot com @ 2009-03-24 13:32 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from joseph at codesourcery dot com  2009-03-24 13:32 -------
Subject: Re:  stddef.h assumes machinee/ansi.h defines
 _ANSI_H_

I see you did in fact send the stddef.h changes to gcc-patches - thanks 
for splitting up the separate logical parts of the patch (which is always 
best to do, since the stddef.h and fixincludes changes can reasonably be 
reviewed separately).


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38182


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug target/38182] stddef.h assumes machinee/ansi.h defines _ANSI_H_
  2008-11-19 20:31 [Bug c/38182] New: stddef.h assumes machinee/ansi.h defines _ANSI_H_ aran at 100acres dot us
                   ` (10 preceding siblings ...)
  2009-03-24 13:32 ` joseph at codesourcery dot com
@ 2009-03-24 15:49 ` aran at 100acres dot us
  2009-03-24 16:04 ` joseph at codesourcery dot com
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: aran at 100acres dot us @ 2009-03-24 15:49 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from aran at 100acres dot us  2009-03-24 15:49 -------
Subject: Re:  stddef.h assumes machinee/ansi.h defines _ANSI_H_

Joseph,
        The fixincludes changes fix another issue.  Should I create 
a new bug and reference that bug in the e-mail or just 
describe the problem in the e-mail?

Aran

On Tuesday 24 March 2009 6:22:25 joseph at codesourcery dot 
com wrote:
> ------- Comment #10 from joseph at codesourcery dot com 
> 2009-03-24 13:22 ------- Subject: Re:  stddef.h assumes
> machinee/ansi.h defines _ANSI_H_
>
> On Tue, 24 Mar 2009, aran at 100acres dot us wrote:
> > This is a combination of the other two patches.  GCC's
> > version of stddef.h is still installed and fixed for
> > NetBSD.  The copy of sys/types.h is not installed.
>
> Once you have finished testing, please send the patch
> with ChangeLog entries and a self-contained explanation
> to gcc-patches as described in contribute.html.
>
> Do not include the diffs to the generated file fixincl.x;
> the person committing it will need to regenerate it using
> a current autogen version (which would keep GPLv3 notices
> there rather than wrongly substituting GPLv2 notices).


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38182


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug target/38182] stddef.h assumes machinee/ansi.h defines _ANSI_H_
  2008-11-19 20:31 [Bug c/38182] New: stddef.h assumes machinee/ansi.h defines _ANSI_H_ aran at 100acres dot us
                   ` (11 preceding siblings ...)
  2009-03-24 15:49 ` aran at 100acres dot us
@ 2009-03-24 16:04 ` joseph at codesourcery dot com
  2009-03-25 18:57 ` prlw1 at cam dot ac dot uk
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: joseph at codesourcery dot com @ 2009-03-24 16:04 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from joseph at codesourcery dot com  2009-03-24 16:04 -------
Subject: Re:  stddef.h assumes machinee/ansi.h defines
 _ANSI_H_

On Tue, 24 Mar 2009, aran at 100acres dot us wrote:

> Joseph,
>         The fixincludes changes fix another issue.  Should I create 
> a new bug and reference that bug in the e-mail or just 
> describe the problem in the e-mail?

Describing the problem in the email is sufficient.  If the patch isn't 
reviewed within a week or so then ping it (as many times as needed).  If 
the patch is approved but not committed, make clear that you need someone 
with write access to commit it for you.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38182


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug target/38182] stddef.h assumes machinee/ansi.h defines _ANSI_H_
  2008-11-19 20:31 [Bug c/38182] New: stddef.h assumes machinee/ansi.h defines _ANSI_H_ aran at 100acres dot us
                   ` (12 preceding siblings ...)
  2009-03-24 16:04 ` joseph at codesourcery dot com
@ 2009-03-25 18:57 ` prlw1 at cam dot ac dot uk
  2009-09-07 16:47 ` prlw1 at cam dot ac dot uk
  2009-09-07 17:25 ` joseph at codesourcery dot com
  15 siblings, 0 replies; 17+ messages in thread
From: prlw1 at cam dot ac dot uk @ 2009-03-25 18:57 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from prlw1 at cam dot ac dot uk  2009-03-25 18:57 -------
I take it all is in hand, and I don't need to test anything? (I did a
successful
build with the same as the first patch, but defining _MACHINE_ANSI_H_ - this is
equivalent - all went well)


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38182


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug target/38182] stddef.h assumes machinee/ansi.h defines _ANSI_H_
  2008-11-19 20:31 [Bug c/38182] New: stddef.h assumes machinee/ansi.h defines _ANSI_H_ aran at 100acres dot us
                   ` (13 preceding siblings ...)
  2009-03-25 18:57 ` prlw1 at cam dot ac dot uk
@ 2009-09-07 16:47 ` prlw1 at cam dot ac dot uk
  2009-09-07 17:25 ` joseph at codesourcery dot com
  15 siblings, 0 replies; 17+ messages in thread
From: prlw1 at cam dot ac dot uk @ 2009-09-07 16:47 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #15 from prlw1 at cam dot ac dot uk  2009-09-07 16:47 -------
I just got stuck with this again: wondered why a NetBSD-5.99.15/i386 box with
gcc-HEAD wouldn't compile. Then remembered the #define _ANSI_H_ fix and all is
well. What is impeding this patch from being applied?


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38182


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug target/38182] stddef.h assumes machinee/ansi.h defines _ANSI_H_
  2008-11-19 20:31 [Bug c/38182] New: stddef.h assumes machinee/ansi.h defines _ANSI_H_ aran at 100acres dot us
                   ` (14 preceding siblings ...)
  2009-09-07 16:47 ` prlw1 at cam dot ac dot uk
@ 2009-09-07 17:25 ` joseph at codesourcery dot com
  15 siblings, 0 replies; 17+ messages in thread
From: joseph at codesourcery dot com @ 2009-09-07 17:25 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #16 from joseph at codesourcery dot com  2009-09-07 17:24 -------
Subject: Re:  stddef.h assumes machinee/ansi.h defines
 _ANSI_H_

On Mon, 7 Sep 2009, prlw1 at cam dot ac dot uk wrote:

> I just got stuck with this again: wondered why a NetBSD-5.99.15/i386 box with
> gcc-HEAD wouldn't compile. Then remembered the #define _ANSI_H_ fix and all is
> well. What is impeding this patch from being applied?

I don't recall seeing weekly pings of it; presumably no maintainer in a 
relevant area picked up review of it the first and only time it was posted 
and noone made maintainers aware of the continued need for review by 
pinging it until it gets reviewed.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38182


^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2009-09-07 17:25 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-11-19 20:31 [Bug c/38182] New: stddef.h assumes machinee/ansi.h defines _ANSI_H_ aran at 100acres dot us
2008-11-19 20:34 ` [Bug c/38182] " aran at 100acres dot us
2009-02-11  4:32 ` [Bug target/38182] " hbent at cs dot oberlin dot edu
2009-02-19 21:46 ` aran at 100acres dot us
2009-03-23 19:31 ` prlw1 at cam dot ac dot uk
2009-03-23 20:35 ` joseph at codesourcery dot com
2009-03-23 20:45 ` prlw1 at cam dot ac dot uk
2009-03-23 20:54 ` joseph at codesourcery dot com
2009-03-23 21:07 ` prlw1 at cam dot ac dot uk
2009-03-24  6:16 ` aran at 100acres dot us
2009-03-24 13:22 ` joseph at codesourcery dot com
2009-03-24 13:32 ` joseph at codesourcery dot com
2009-03-24 15:49 ` aran at 100acres dot us
2009-03-24 16:04 ` joseph at codesourcery dot com
2009-03-25 18:57 ` prlw1 at cam dot ac dot uk
2009-09-07 16:47 ` prlw1 at cam dot ac dot uk
2009-09-07 17:25 ` joseph at codesourcery dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).