Boost logo

Ublas :

Subject: Re: [ublas] problem regards to using boost binding library for svd in lapack under vc 9.0
From: Thomas Klimpel (Thomas.Klimpel_at_[hidden])
Date: 2009-04-15 03:44:08


Add
#define BIND_FORTRAN_LOWERCASE_UNDERSCORE
to your code (or to the preprocessor definition of VC9)

Then it will either work, or the linker will complain that _dgesdd_ is unresolved instead of _dgesdd.

(This is because clapack is created by f2c, which uses unix calling conventions)

Regards,
Thomas