From: "Kalum Somaratna" To: djgpp AT delorie DOT com Date: Sat, 30 Oct 1999 05:44:37 +0600 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: autoexec.bat prob Cc: neekolai1 AT hotmail DOT com In-reply-to: <7vcuit$l7k$1@nntp1.atl.mindspring.net> X-mailer: Pegasus Mail for Win32 (v3.12) Message-Id: <19991029234447.DC7F0639C6@zagnut.hotpop.com> X-HotPOP: ----------------------------------------------- Sent By HotPOP.com FREE Email Get your FREE POP email at www.HotPOP.com ----------------------------------------------- Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On 29 Oct 99, at 15:04, Neekolai wrote: > Problem still happens, on the line where it loads the djgpp.env file it > gives the message on the line below it: > Out of environment space > Hi Neekolai, The problem is that the default environmen't size is not enough. It may be that you have too many SET commands in your autoexec.bat. Please try adding the following line to your CONFIG.SYS file SHELL=C:\COMMAND.COM C:\ /P /e:512 The /e: specifies the size of the environment and can be from 256 to 32768 , So if after doing this if you still get the same error try increasing the value after the e: switch (it will increase the environment size) and it should be OK. If this doen't work please post the content's of your CONFIG.SYS and AUTOEXEC.BAT files. Happy Coding! Kalum .