Re: gcc problem with filename case insensitivity

2003-02-25 Thread David Starks-Browning
On Monday 24 Feb 03, Elfyn McBratney writes: > > ... > > and I compile with "gcc -Imy/include/dir sourcefile.c" where > > String.h lives in my/include/dir. > > > > GCC uses my/include/dir/String.h to satisfy the directive. > > I just tried this with "check_case:strict" in my CYGWIN environment >

Re: gcc problem with filename case insensitivity

2003-02-24 Thread Alex Vinokur
"David Starks-Browning" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Greetings, > > I have a problem which I realise comes from Windows' being > case-insensitive with filenames. Even so, maybe someone here knows > how to solve it. > > Suppose I have this source file: > > #include

Re: gcc problem with filename case insensitivity

2003-02-24 Thread Elfyn McBratney
> I have a problem which I realise comes from Windows' being > case-insensitive with filenames. Even so, maybe someone here knows > how to solve it. > > Suppose I have this source file: > > #include > #include "String.h" > > int main() { > // some stuff > } > > and I compile with "gcc -Imy/incl

gcc problem with filename case insensitivity

2003-02-24 Thread David Starks-Browning
Greetings, I have a problem which I realise comes from Windows' being case-insensitive with filenames. Even so, maybe someone here knows how to solve it. Suppose I have this source file: #include #include "String.h" int main() { // some stuff } and I