Hi all,
I have compiled the last alpha (20011123) under DJGPP
When running the test suite there is a weird crash in readb10.pas and friends (endless loop of SIGSEGV), due to a too small default stack size. The following diff to increase the stack solves the problem:
--- read1.inc.orig Mon Nov 26 16:07:20 2001 +++ read1.inc Thu Nov 29 20:07:10 2001 @@ -1,5 +1,9 @@ uses gpc;
+{$ifdef DJGPP} +const MinStackSize: Cardinal = $200000; asmname '_stklen'; {2 MB} +{$endif} + var dialect:string(100)='Unspecified dialect'; rangecheck :Boolean=(*@@not implemented yet True*)False;
After that there is no more error, and I have uploaded the resulting bin to agnes.
Maurice
Maurice Lombardi wrote:
Hi all,
I have compiled the last alpha (20011123) under DJGPP
When running the test suite there is a weird crash in readb10.pas and friends (endless loop of SIGSEGV), due to a too small default stack size. The following diff to increase the stack solves the problem:
Thanks. (Though I'm a little surprised that it occurs now and now earlier, since I think I actually reduced the size of this test ...)
Frank