Displaying 2 results from an estimated 2 matches for "nagcsmt".
Did you mean:
lnagcsmt
2004 Nov 11
1
problem building an R package under Windows XP with calls to
..."test",libpath)
}
gotest <- function()
{
.C("test")
return(0)
}
Based on Duncan Murdoch's recommendation, I then included a Makefile.win
file containing the following code:
test.dll : test.obj test.def
link /dll /def:test.def /out:test.dll test.obj nagcsmt-mkl.lib
mkl_s.lib mkl_def.lib mkl_lapack.lib advapi32.lib netapi32.lib Rdll.lib
test.obj : test.c
cl /MT /Ox /D "WIN32" /c -I"C:\Program Files\Numerical Algorithms
Group\CLW3207DA\include" test.c
I inspired myself from the readme.package file in the \R folder to write
th...
2004 Nov 11
1
FW: problem building an R package under Windows XP with calls to NAG C routines
...;- function()
> {
> .C("test")
> return(0)
> }
>
>Based on Duncan Murdoch's recommendation, I then included a Makefile.win
>file containing the following code:
>
>test.dll : test.obj test.def
> link /dll /def:test.def /out:test.dll test.obj nagcsmt-mkl.lib
>mkl_s.lib mkl_def.lib mkl_lapack.lib advapi32.lib netapi32.lib Rdll.lib
>test.obj : test.c
> cl /MT /Ox /D "WIN32" /c -I"C:\Program Files\Numerical Algorithms
>Group\CLW3207DA\include" test.c
>
>I inspired myself from the readme.package file in t...