Re: [Rd] Strange problems with compiling dll

2010-12-03 Thread Dirk Eddelbuettel
On 3 December 2010 at 08:46, Oleksandr Dyklevych wrote: | I'm trying to speed up my R code by writing quite simple dll's in C. But I Yes, that can be a very appropriate approach and many tools help. Make sure you read the 'Writing R Extensions' manual though. | faced some problems, and I cannot

[Rd] Strange problems with compiling dll

2010-12-03 Thread Oleksandr Dyklevych
Dear sir\madam! I'm trying to speed up my R code by writing quite simple dll's in C. But I faced some problems, and I cannot determine their source. #include SEXP mycombin(SEXP N, SEXP k){ int i, *j, *l, c; j = INTEGER(k);l = INTEGER(N); c = 1; if(j[0] > 0 && j[0] < l[