Displaying 1 result from an estimated 1 matches for "_dgesdd_".
2007 Mar 29
1
Using functions in LAPACK in a C program
...K library, for example, dgesdd, in the program. Following R manual, I call the function by F77_CALL(dgesdd) in the program. The program can be compiled without problems. However, when it is linked to produce a DLL file, I get an error message
Test.obj : error LNK2001: unresolved external symbol _dgesdd_
Test.dll : fatal error LNK1120: 1 unresolved externals
I use VC++6.0 and the command of linking is something like this
link.exe Rdll.lib /nologo /dll /out:Test.dll /libpath:C:\R\R-2.2.1\src\gnuwin32 Test.obj
Apparently, the linker cannot resolve dgesdd from Rdll.lib. If anyone knows what I m...