Re: SIGABRT from guile-2.0.11 using sxml-match

2016-06-20 Thread Andy Wingo
Hi, Sadly this means that Guile's compiler ran out of stack space, and then ran out of stack space handling the error :/ This is fixed in Guile 2.1.x, which doesn't have a stack limit. Otherwise, set the GUILE_STACK_SIZE environment variable for version 2.0.x; see the manual. Andy On Tue 05 Apr

SIGABRT from guile-2.0.11 using sxml-match

2016-04-05 Thread Matt Wette
The attached file generates a SIGABRT for me in guile-2.0.11 on my Mac.  It looks like a stack overflow.  The program is a  sxml-match case with ~ 100 rules.   I can work around by splitting the match into two cases of 50 rules.  I am not sure this qualifies as a bug, but may be of interest.mwette$

Re: SIGABRT from guile-2.0.11 using sxml-match

2016-04-05 Thread Matt Wette
I forgot to mention that the SIGABRT occurs during the compile process. > On Apr 4, 2016, at 7:14 PM, Matt Wette wrote: > > The attached file generates a SIGABRT for me in guile-2.0.11 on my Mac. It > looks like a stack overflow. The program is a sxml-match case with ~ 100 > rules. I can