Xref: news2.mv.net comp.os.msdos.djgpp:2329 From: Broeker AT axp03 DOT physik DOT rwth-aachen DOT de (Hans-Bernhard Broeker) Newsgroups: comp.os.msdos.djgpp Subject: Re: Problem setting up DJGPP V2 Date: 1 Apr 96 11:53:06 GMT Organization: RWTH -Aachen / Rechnerbetrieb Informatik Lines: 33 Message-ID: References: <4jngfq$9b6 AT sow DOT colloquium DOT co DOT uk> NNTP-Posting-Host: axp03.physik.rwth-aachen.de To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp kenmcmill AT cqm DOT co DOT uk (Alistair McMillan) writes: >I have just downloaded and unzipped V2 to my computer, >but I cant get it to do anything. >When I try gcc -v -o ex1_2.exe ex1_2.C I get this response: (Just a hint: are you sure that should be ex1_2.C, not .c? '*.C' indicates a C++ program to gcc, so guard your steps!) Here's what I think are the crucial lines among the informations posted: [...from the gcc -v output:] >cpp.exe: d:/programming/djgppv2/tmp\ccbaaaaa: No such file or >directory (ENOENT) [...from the Djgpp.env file:] >+TMPDIR=%DJDIR%/tmp From these two lines, I'd guess that the directory TMPDIR points to, and which also appears in the error message from cpp, i.e. 'd:/programming/djgppv2/tmp' either doesn't exist at all (in that case, you'd better change that line in DJGPP.env to point to the same place as the TEMP environment variable), or you got caught by the problem DJGPP V2 is reported to have with long filenames under Win 95 (you may have to 'set LFN=y' or 'set LFN=n'). Hope this helps Hans-Bernhard Broeker (Aachen, Germany)