Hi
I am trying to follow the tutorial : http://icl.cs.utk.edu/lapack-for-windows/lapack/
i downloaded the prebuilt libraries BLAS.lib and LAPACK.lib (at the moment i dont need optimized blas)
i created a visual studio 2008 console project, and added the 2 libs above among the Linker->Input->Additional Dependencies
i then copy/pasted the source from http://www.cs.rochester.edu/~bh/cs400/lapack_tut.c
then i changed
void dgesv_( )
void dgels_( )
to
extern "C" void dgesv_( )
extern "C" void dgels_( )
and then i compiled, but when i compile, i get:
1>foobar.obj : error LNK2001: unresolved external symbol _dgesv_
1>D:\local2\Software\lapack\test\foobar\Release\foobar.exe : fatal error LNK1120: 1 unresolved externals
I am not sure what i am doing wrong.
Also, for the gotoblas, the page mention a .dll library that is not present in case of the default BLAS.lib. Is that correct?
thanks in advance!

