Date: Thu, 27 Aug 1998 14:45:11 +0300 (IDT) From: Eli Zaretskii To: lqian AT uiuc DOT edu cc: djgpp AT delorie DOT com Subject: Re: Installing DJGPP and running it In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On 27 Aug 1998, Leiming Qian wrote: > set path=%path%;c:\djgpp\bin It is usually best to put the DJGPP's bin directory *first*, not last: set path=c:\djgpp\bin;%path% One case where it matters is when the combined length of the old PATH and c:\djgpp\bin exceeds 127 characters. Another case is when you have some other compiler installed with programs like cpp.exe etc. on the PATH.