Displaying 2 results from an estimated 2 matches for "excelpoi".
2004 Dec 29
2
help with Rcmd check
...been working on a package that requires a shared library to be loaded.
I have used the NAMESPACE file to load the library according to:
http://cran.r-project.org/doc/manuals/R-exts.html#Load%20hooks
<http://cran.r-project.org/doc/manuals/R-exts.html#Load%20hooks>
my shared library is "excelpoi.so" hence I have added "useDynLib(excelpoi)"
to my NAMESPACE file.
Prior to this change, my package was passing Rcmd check with no errors or
warnings. After this change, I get 5 warnings:
whita$grep 'WARN' /home/whita/dvl/excelpoi.Rcheck/00check.log
* checking S3 generic/m...
2004 Dec 29
2
Makefile vs Makevars vs configure
...ng a Makefile to build my shared library. Pursuant to the
R-exts manual, I'd like to switch to a Makevars file or a configure file if
necessary.
Having never used these types of make utilities before, I'm a bit lost.
My package is quite simple. It only has one source file and one header:
excelpoi.cpp
excelpoi.h
The reason I need help with Makevars is because it needs jni.h from the
user's JAVA_HOME/include and jni_md.h from the user's
JAVA_HOME/include/OS_TYPE directory.
In addition, it needs libjvm.so from the user's
JAVA_HOME/jre/lib/ARCH/client directory.
I've looked a...