Date: Tue, 15 Oct 2002 16:13:26 -0600 From: Johnny Patino Subject: bash To: DJGPP Message-id: MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7BIT Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal Reply-To: djgpp AT delorie DOT com Hi there, When I execute the following command using bash-2.05b: bash-2.05b$ javac -d d:/documents/johnny BoardPanel.java TopPane.java BottomPane.java WheelOfFortune.java I get the following error: bash.exe: c:/progra~1/java/j2sdk1~1.0/bin/javac.exe: Not enough memory (ENOMEM) However slightly changing the output directory executes fine: bash-2.05b$ javac -d d:/documents BoardPanel.java TopPane.java BottomPane.java WheelOfFortune.java and the first command mentioned bash-2.05b$ javac -d d:/documents/johnny BoardPanel.java TopPane.java BottomPane.java WheelOfFortune.java works fine under cmd.exe Could someone please let me know how to increase the memory for bash under W2K. When I execute go32-v2.exe I get the following output: bash-2.05b$ go32-v2 go32/v2 version 2.0 built Oct 7 2002 12:34:16 Usage: go32 coff-image [args] Rename this to go32.exe only if you need a go32 that can run v2 binaries as well as v1 binaries (old makefiles). Put ahead of the old go32 in your PATH but do not delete your old go32 - leave it in the PATH after this one. Set GO32_V2_DEBUG=y in the environment to get verbose output. DPMI memory available: 15056 Kb DPMI swap space available: 304 Kb It seems odd to me that 15MB is not enough to compile a very simple program. Why else would I get the ENOMEM error? Thanks for your time. Johnny