Displaying 1 result from an estimated 1 matches for "cfmfin".
Did you mean:
cffi
2006 Dec 08
2
dyn.load and function calls without 'PACKAGE' argument
...am("fame", package = "fame")
The code in fame.so uses functions found in libjchli.so, making the
'local = F' argument in dyn.load() necessary. But since Fame symbols
are found in libjchli.so, which is NOT part of my package, I can't, for
example, do this:
.C("cfmfin", status = integer(1), PACKAGE = "fame")
since the PACKAGE argument tells R to look only in fame.so for symbols.
Instead, I have to do it without specifying 'PACKAGE', i.e.,
.C("cfmfin", status = integer(1))
This works, but 'R CMD check' complains:
&qu...