Date: Tue, 2 Apr 1996 07:26:59 +0200 (IST) From: Eli Zaretskii To: Alistair McMillan Cc: djgpp AT delorie DOT com Subject: Re: Problem setting up DJGPP V2 In-Reply-To: <4jngfq$9b6@sow.colloquium.co.uk> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Mon, 1 Apr 1996, Alistair McMillan wrote: > PATH=C:\WINDOWS\COMMAND;D:\PROGRA~2\DJGPPV2\BIN > DJGPP=D:/Programming/DjgppV2/djgpp.env You can't point the DJGPP environment variable to a pathname that includes long filenames. It's a chicken-and-egg problem: DJGPP cannot know that it is required to support long filenames before it reads DJGPP.ENV, and it cannot find it if it doesn't use long filenames support. I think that if you change the second line above to this: set DJGPP=D:/PROGRA~2/DJGPPV2/DJGPP.ENV everything will work OK. More generally, until you have a working environment, avoid using anything that's not a standard DOS. One such is long filenames (it still has some bugs); another is 4DOS that you are apparently using. When in doubt, always check if the same bug happens without these non-standard features.