Re: gcc 3.2 and symbolic links problem

2003-09-06 Thread Gerry Reno
I have compiled these programs before with the symlinks. Yes it was with cygwin and not mingw. I just changed my PATH and its compiling. thx, Gerry Reno --- Max Bowsher <[EMAIL PROTECTED]> wrote: > Gerry Reno wrote: > > The error looks like: > > > > $ ls -l myfile.c > > lrwxrwxrwx1 gren

Re: gcc 3.2 and symbolic links problem

2003-09-06 Thread Larry Hall
This is Mingw's gcc. You need to make sure you invoke Cygwin's gcc. It will understand the symlink. Larry At 07:18 PM 9/6/2003, Gerry Reno you wrote: >The error looks like: > >$ ls -l myfile.c >lrwxrwxrwx1 grenoNone 110 Sep 6 19:06 myfile.c -> >../myfile.c > >gcc -c myfile.c -

Re: gcc 3.2 and symbolic links problem

2003-09-06 Thread Max Bowsher
Gerry Reno wrote: > The error looks like: > > $ ls -l myfile.c > lrwxrwxrwx1 grenoNone 110 Sep 6 19:06 myfile.c -> > ../myfile.c > > gcc -c myfile.c -o myfile.o > gcc.exe: myfile.c: No such file or directory > gcc.exe: no input files > > $gcc --version > gcc.exe (GCC) 3.2.3 (mingw

Re: gcc 3.2 and symbolic links problem

2003-09-06 Thread Gerry Reno
The error looks like: $ ls -l myfile.c lrwxrwxrwx1 grenoNone 110 Sep 6 19:06 myfile.c -> ../myfile.c gcc -c myfile.c -o myfile.o gcc.exe: myfile.c: No such file or directory gcc.exe: no input files $gcc --version gcc.exe (GCC) 3.2.3 (mingw special 20030504-1) --- Gerry Reno <[

gcc 3.2 and symbolic links problem

2003-09-06 Thread Gerry Reno
I recently upgraded to cygwin 1.5.3 and to Mingw 3.0.0 and I now notice that gcc will fail when trying to compile files that are symlinks. I tried deleting and recreating the link - still fails. I can read all the files and use all other tools with these symlinks. Has anyone else seen this pro