[Rd] Need help debugging R.

2004-08-24 Thread Samuelson, Frank*
I originally posted this to R-help, but here is probably a better place. I have a rather complex routine which works great in R. Then I bootstrap it. After running a few minutes it typically segfaults, though it happens very randomly. This happens w/ 1.9.0 and 1.9.1 on Fedora1 and a Scyld

Re: [Rd] Need help debugging R.

2004-08-24 Thread Prof Brian Ripley
You need one of 1) gctorture(TRUE) 2) Run under valgrind to look for memory overruns. and patience. If it segfaults under gctorture you will probably see the real culprit via gdb. I would try under R-devel, as quite a few memory problems have been plugged there. Or at least under R-patched

Re: [Rd] Need help debugging R.

2004-08-24 Thread Peter Dalgaard
Prof Brian Ripley [EMAIL PROTECTED] writes: You need one of 1) gctorture(TRUE) 2) Run under valgrind to look for memory overruns. and patience. If it segfaults under gctorture you will probably see the real culprit via gdb. I would try under R-devel, as quite a few memory problems