[R] Linking Rblas

2006-03-09 Thread Rau, Roland
Dear all, when making a DLL via Rcmd SHLIB is there a way to link against a library such as Rblas (I am on a Windows platform) on a case to case basis? I played a bit around with some self-written C-code which should call the function 'dasum' defined in Blas.h. I encountered the following proble

Re: [R] Linking Rblas [under Windows]

2006-03-09 Thread Prof Brian Ripley
Yes, lots of packages link to Rblas. The help page for SHLIB tells you Please consult section 'Creating shared objects' in the manual 'Writing R Extensions' for how to customize it (for example to add 'cpp' flags and to add libraries to the link step) and for details of so

Re: [R] Linking Rblas [under Windows]

2006-03-09 Thread Rau, Roland
; To: Rau, Roland > Cc: r-help@stat.math.ethz.ch > Subject: Re: [R] Linking Rblas [under Windows] > > Yes, lots of packages link to Rblas. The help page for SHLIB > tells you > > Please consult section 'Creating shared objects' in the manual > '