Displaying 1 result from an estimated 1 matches for "addiere".
2008 Oct 18
1
R CMD SHLIB: file not recognized: File format not recognized
Dear R useRs,
on ubuntu 8.04 i try to create a shared object out of a c-file
this is
// add.c
#include <Rinternals.h>
SEXP addiere(SEXP a, SEXP b)
{
int i, n;
n = length(a);
for (i = 0; i < n; i++)
REAL(a)[i] += REAL(b)[i];
return(a);
}
in terminal i type
R CMD SHLIB add.c
and get
gcc -std=gnu99 -shared -o add.so add.o -L/usr/lib/R/lib -lR
add.o: file not recognized: File format not recognized
my gcc ver...