Re: [Rd] Error: C stack usage is too close to the limit

2014-03-29 Thread Randy Lai
I have similar experience previously. What I done was disabling stack limit checking R_CStackLimit = -1; and increasing the stack size to .16*1024*1024. Hope it helps. Randy On Mar 28, 2014, at 2:55 PM, Florian Burkart wrote: > Hi, > > I have been using my own C++ plugin for a whil

Re: [Rd] Error: C stack usage is too close to the limit

2014-03-29 Thread Simon Urbanek
On Mar 29, 2014, at 4:12 AM, Randy Lai wrote: > I have similar experience previously. What I done was disabling stack limit > checking > >R_CStackLimit = -1; > > and increasing the stack size to .16*1024*1024. > > Hope it helps. > Well, it will result in R crashing instead :) So be ca