From: Andris Pavenis To: djgpp-workers AT delorie DOT com, Martin Stromberg Subject: Re: DJGPP 2.04 status page updates: more to-dos, priorities Date: Tue, 10 Dec 2002 23:21:28 +0200 User-Agent: KMail/1.5 References: <200212101643 DOT RAA22950 AT lws256 DOT lu DOT erisoft DOT se> In-Reply-To: <200212101643.RAA22950@lws256.lu.erisoft.se> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200212102321.28994.pavenis@latnet.lv> Reply-To: djgpp-workers AT delorie DOT com On Tuesday 10 December 2002 18:43, Martin Stromberg wrote: > > > Programs that catch SIGFPE and SIGINT. TODO: What exactly is this bug? > > > > This is just someone to test SIGFPE on Win2K. SIGINT is probably > > something we can't do anything about - sometimes CTRL-C is caught > > someplace else and the image just exits (we don't see signal). Don't > > think it's fixable. > > Note that this happens often with bash even in W98. That might be of a > different bug though. > > > > 2 The default stack size, 512KB, is too small to bootstrap gcc 3.3. > > > > We should probably just make it 1Mb for everything in V2.04. But this > > will make memory problems even worse on Win boxes with less than 16Mb of > > memory. Thoughts? Do we keep an earlier toolchain available for small > > memory boxes? > > No. I suggest add a switch to stubify and let makefiles of programs > that need this use that. > Once I suggested something like command line option -stack=NNN for GCC. It can be easily implemented in GCC specs if we have utility which permits to set stack size for command line without user manual action. One can try to use stibedit for that (called after stubify by gcc only when -stack=NNN is specified in command line). Problem was that stubedit doesn't handle cases when name of generated executable is changed by stubify by adding '.exe'. If stubedit would do the same all should be Ok. But this requires changes to stubedit and will fail when .exe is added and user has old stubedit. So I think we still cannot relay on such feature even if it is introduced soon (what could be nice) Andris