Re: [Rd] bus error on calling nmmin

2006-04-14 Thread David Faden
2006/4/14, Prof Brian Ripley <[EMAIL PROTECTED]>: > You appear to be trying to call nmmin from a standalone program. > You linked against -lR, but failed to initialize R, hence the segfault. > > nmmin is not a part of R that is made available except to a running R > process: it is documented in `Wr

Re: [Rd] bus error on calling nmmin

2006-04-13 Thread Prof Brian Ripley
You appear to be trying to call nmmin from a standalone program. You linked against -lR, but failed to initialize R, hence the segfault. nmmin is not a part of R that is made available except to a running R process: it is documented in `Writing R Extensions' for use in R packages. On Thu, 13 Apr

[Rd] bus error on calling nmmin

2006-04-13 Thread David Faden
Hi, I'm trying to get a toy program making use of nmmin to run successfully. I've gotten to the point of compiling. However, when I attempt to run my executable, I guess a bus error. I see that someone else has asked about using nmmin before