Displaying 2 results from an estimated 2 matches for "_rf_unprotect".
Did you mean:
rf_unprotect
2000 Jun 26
2
Looking for protect()
...Writing R extensions."
I'm using R 1.1.0, and below I list some easy code that I got from section
3.6.4. When I try to compile the file out.c under NT 4, using VC++ 6.0, I
get the following error messages:
Compiling...
out.c
Linking...
out.obj : error LNK2001: unresolved external symbol _Rf_unprotect
out.obj : error LNK2001: unresolved external symbol _Rf_protect
out.obj : error LNK2001: unresolved external symbol _Rf_allocMatrix
out.obj : error LNK2001: unresolved external symbol _Rf_length
I see, for example, that PROTECT(s) is #defined as protect(s) in R.h,
#ifndef R_NO_REMAP. If I do nothi...
2003 May 20
1
building a Win32 DLL with R objects?
...ger but haven't been able to
figure out how to build R DLLs using something other than the RCMD SHLIB.
WHen I try to compile a project, similar to my other projects I've been
calling from R, I get the following linker errors:
Linking...
main.obj : error LNK2001: unresolved external symbol _Rf_unprotect
main.obj : error LNK2001: unresolved external symbol _REAL
main.obj : error LNK2001: unresolved external symbol _LENGTH
main.obj : error LNK2001: unresolved external symbol _Rf_warning
main.obj : error LNK2001: unresolved external symbol _Rf_protect
main.obj : error LNK2001: unresolved external sym...