Date: Mon, 13 May 1996 08:54:17 +0200 (IST) From: Eli Zaretskii To: mll6 AT Lehigh DOT EDU Cc: djgpp AT delorie DOT com Subject: Re: Test setup problems In-Reply-To: <4n4q3f$1mk5@ns1-1.CC.Lehigh.EDU> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On 12 May 1996 mll6 AT Lehigh DOT EDU wrote: > The exact error is "Cannot exec go32". The ver of GCC is 272b. The non-swap > DPMI mem is 29xx kb. Please add -v to the gcc switches and see at which stage is that message printed. The most probably reason is that one of the programs invoked by GCC (cc1, cc1plus, as, ld or stubify) is an old program compiled with DJGPP v1.x. GCC detects this and tries to invoke that program via go32.exe, but doesn't find go32.exe on your PATH. Once you find that old program, replace it with one that is compiled with v2. Or maybe an older version of one of the programs GCC needs is on the PATH before the DJGPP bin subdirectory, so GCC tries to use it instead of the correct one. Changing the order of the directories on your PATH or removing that old program will solve this. If the above doesn't help you solve the problem, post everything GCC prints when you add the -v switch to your command line.