Date: Mon, 26 Jul 93 09:47:23 -0400 From: DJ Delorie To: MEHRDAD AT glum DOT dev DOT cf DOT ac DOT uk Cc: DJGPP AT sun DOT soe DOT clarkson DOT edu Subject: Re: Help needed with shipping DJGPP applications > I am trying to ship an application compiled with djgpp > to a friend of mine who does not have DJGPP installed > on his disk. Is there any way of compiling my source so that > I don't have to install GO32 on his machine in order to make > it run? (1) Give hime a copy of go32.exe. (2) Use "copy /b go32.exe+prog prog.exe" instead of aout2exe. The program will load slower as go32.exe isn't page aligned. 1.11's aout2exe will allow you to specify the stub and will align it, so by then "aout2exe -s go32.exe prog" will do what you want. DJ