search for: mkl_def

Displaying 2 results from an estimated 2 matches for "mkl_def".

Did you mean: lmkl_def
2004 Nov 11
1
problem building an R package under Windows XP with calls to
...} 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 these lines. Note that this...
2004 Nov 11
1
FW: problem building an R package under Windows XP with calls to NAG C routines
....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 >thes...