search for: y_7

Displaying 1 result from an estimated 1 matches for "y_7".

Did you mean: y7
1999 Sep 14
1
dyn.load
...fct.c -o myfct.o ld -shared -o myfct.so myfct.o ~/R/testR$ R SHLIB myother.c gcc -g -O2 -fpic -I/usr/local/lib/R/include -c myother.c -o myother.o ld -shared -o myother.so myother.o Then, when I am running R : > dyn.load("myother.so") > dyn.load("myfct.so") > x_5 > y_7 > is.loaded(symbol.C("myfct")) [1] TRUE > is.loaded(symbol.C("otherfct")) [1] TRUE > .C("myfct",x,y) /usr/local/lib/R/bin/R.binary: error in loading shared libraries /home/mestiv/R/testR/myfct.so: undefined symbol: otherfct What is my error ? Thank you for yo...