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
Laboratoire de Spectrometrie Physique,
Universite Joseph Fourier de Grenoble, BP87
38402 Saint Martin d'Heres Cedex FRANCE
Tel: 33 (0)4 76 51 47 51
Fax: 33 (0)4 76 63 54 95
mailto:Maurice.Lombardi@ujf-grenoble.fr