Message-ID: From: "Curtis, Craig M." To: "'Eli Zaretskii'" Cc: "'djgpp AT delorie DOT com'" Subject: RE: Program too big to fit in memory Date: Thu, 26 Mar 1998 09:08:40 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Precedence: bulk > > >On Wed, 25 Mar 1998, Curtis, Craig M. wrote: > >> I have compiled the latest version of Python (v1.5) with djgpp(v2.01) on >> a win95 p133. When I try to execute it, I get: "Program too big to >> fit in memory" while running in a DOS Box in Win95. > >One possible reason for this would be that you clicked on the file >`python' in the file manager. If so, click on `python.exe' instead. >DOS and Windows don't know how to run the raw COFF image, so they >fail. > >If the above doesn't help, I'd guess that your program doesn't have >the DJGPP stub prepended to it. Without the stub, the program lacks >the DOS exe header, and DOS doesn't know how to run it (it boldly >tries anyway, and you get the error message). This was the problem. I ran stubify on Python and it fixed it. Thanks, Craig Curtis >