Mail Archives: djgpp/2001/06/21/09:57:40
Shankar Chakkere <shankara AT erols DOT com> wrote:
> I have ported the Cscope (Ver 15b12) the developer's tool for browsing C
> program to Win9x about a year back. I have tested it on Win95 and Win98,
> all my source code to be analysed by cscope is on my local drive.
Let me note that the upcoming next version will build on DJGPP
out-of-the-box. I consider my patches, which are in the mainline
sources by now, superior to Shankar's version.
> cscope: Improper link (EXDEV)
> cscope: cannot link file ncscope.out to file cscope.out
Hmm... looks like NT thinks you have the new file (ncscope.out) on a
different filesystem where cscope.out (EXDEV is "cross-device
link"). Which is very strange, since they're actually in one and the
same directory. What cscope is doing here is essentially:
unlink("cscope.out");
rename("ncscope.out", "cscope.out");
There are known problems in Win2K with the rename() function, IIRC,
but on NT, this should work without any major problem.
--
Hans-Bernhard Broeker (broeker AT physik DOT rwth-aachen DOT de)
Even if all the snow were burnt, ashes would remain.
- Raw text -