Re: Seeming flaw in Xcode 10

2018-11-11 Thread Ken Cunningham
> On Nov 11, 2018, at 3:07 PM, Perry E. Metzger wrote: > > No, that works if is in the system includes path, and > that's standards conformant. What I know about this, no doubt incomplete, comes from here: https://developer.apple.com/documentation/xcode_release_notes/xcode_10_release_not

Re: Seeming flaw in Xcode 10

2018-11-11 Thread Helmut K. C. Tessarek
On 2018-11-11 17:36, Perry E. Metzger wrote: > Does anyone know how to > get in touch with the Xcode team to inform them that this change of > behavior is apparently nonstandard, and breaks the expectations of > standards conforming C code? I don't want to be the devil's advocat, but reporting bug

Re: Seeming flaw in Xcode 10

2018-11-11 Thread Perry E. Metzger
On Sun, 11 Nov 2018 17:50:10 -0500 Mark Anderson wrote: > First thing I would do is file a radar. I know that's a terrible > solution, but it'll be the thing anyone at apple will tell us to do > first thing. I may be mistaken about the problem (see my response to Ken a few moments ago.) This is w

Re: Seeming flaw in Xcode 10

2018-11-11 Thread Perry E. Metzger
On Sun, 11 Nov 2018 15:00:53 -0800 Ken Cunningham wrote: > > > > On Sun, Nov 11, 2018 at 5:36 PM Perry E. Metzger > > mailto:pe...@piermont.com>> wrote: As some > > of you are aware, XCode 10 no longer searches SDK include > > directories for C headers specified with " marks, as in > > And vice

Re: Seeming flaw in Xcode 10

2018-11-11 Thread Ken Cunningham
> > On Sun, Nov 11, 2018 at 5:36 PM Perry E. Metzger > wrote: > As some of you are aware, XCode 10 no longer searches SDK include > directories for C headers specified with " marks, as in > And vice-versa — it will no longer search the source path for any files spec

Re: Seeming flaw in Xcode 10

2018-11-11 Thread Mark Anderson
I can file one against the betas as well. —Mark ___ Mark E. Anderson On Sun, Nov 11, 2018 at 5:50 PM Mark Anderson wrote: > First thing I would do is file a radar. I know that's a terrible solution, > but it'll be the thing anyone at apple will tell us to do first thing. >

Re: Seeming flaw in Xcode 10

2018-11-11 Thread Mark Anderson
First thing I would do is file a radar. I know that's a terrible solution, but it'll be the thing anyone at apple will tell us to do first thing. —Mark ___ Mark E. Anderson On Sun, Nov 11, 2018 at 5:36 PM Perry E. Metzger wrote: > As some of you are aware, XCode 10 no long

Seeming flaw in Xcode 10

2018-11-11 Thread Perry E. Metzger
As some of you are aware, XCode 10 no longer searches SDK include directories for C headers specified with " marks, as in #include "stdio.h" I happened to be reading the C standard (don't ask why) and I've discovered this new behavior is wrong and the original behavior was correct. To wit, in C11