Re: [1.7] Case-sensitive programs exist but cannot both be run

2009-10-16 Thread Corinna Vinschen
On Oct 15 23:01, Yaakov S wrote: > It appears that two EXEs can coexist (with the registry setting) but only > whichever one was so named first will be run: > [...] > Bug? Limitation? If it hurts, don't do that? Limitation. While we can do everything with files using native NT calls, we can't

[1.7] Case-sensitive programs exist but cannot both be run

2009-10-15 Thread Yaakov (Cygwin/X)
It appears that two EXEs can coexist (with the registry setting) but only whichever one was so named first will be run: $ cat > lower.c < int main(void) { printf("I am a lower-case a\n"); return 0; } EOF $ cat > upper.c < int main(void) { printf("I am an UPPER-case A\n"); return 0; } EOF $ gcc