[Rd] Matrix loading hangs on AIX 5.3 with 3.1.2

2015-06-03 Thread derjones
Hi all, Yes, I know 5.3 is old, but it's a system I have to work with at present. I have the latest supported xlC + friends. gcc building is not an option on this system for other reasons. I have read the install instructions and set the env vars according to those and also am using the freeware

Re: [Rd] Problem with shared library and lapack under windows

2015-06-03 Thread Berend Hasselman
> On 03-06-2015, at 09:48, bstr wrote: > > Hi all, > > I have a C function, say Cfun, that calls Lapack's DGEMM routine and I need > to create a shared library to use Cfun inside R. The C file is the following > > #include > #include > #include > > > void Cfun(double *res, double *X, int *n,

[Rd] Problem with shared library and lapack under windows

2015-06-03 Thread bstr
Hi all, I have a C function, say Cfun, that calls Lapack's DGEMM routine and I need to create a shared library to use Cfun inside R. The C file is the following #include #include #include void Cfun(double *res, double *X, int *n, int *q) { char *ptr_TRANSA, TRANSA='T', *ptr_TRANSB, TRAN