From: morphine AT server DOT cs DOT jhu DOT edu (Michael Phelps) Sender: morphine AT server DOT cs DOT jhu DOT edu Date: Sun, 16 Apr 1995 21:38:34 -0400 To: FZ AT phrouter DOT phy DOT pku DOT edu DOT cn, djgpp AT sun DOT soe DOT clarkson DOT edu, eliz AT is DOT elta DOT co DOT il. Subject: Re: Help >> I've installed DJGPP1.12. I have an application. It's OK to compile >> it. But when I copy it to another PC where there is no DJGPP. It can >> not run while a message has been shown: >> >> Can't exec go32. > >You must also copy go32.exe to the other PC and put one copy of it in >some directory on its PATH. An alternative is to include go32 with the executable, eliminating the need to have go32.exe on each system that plans to run the application. Use coff2exe with the -s option to merge the two files: coff2exe -s c:\djgpp\bin\go32.exe program (replace "c:\djgpp\bin\go32.exe" with the correct path to go32.exe for your system, and "program" with your program's name) ---Michael Phelps, MD