Re: [Lapackpp-devel] HELP: about Lapack++ on vc6
Status: Beta
Brought to you by:
cstim
From: Christian S. <sti...@tu...> - 2005-09-23 08:22:24
|
Hi, Xu Bin schrieb: > I'm new to Lapack++. I have download //lapackpp-2.4.0-setup.exe for 32 > bits windows and installed it on my computer. > then I use a example surplemented by the package to test the compiler, > but there are a lot of errors as follows: > c:\program files\lapackpp\include\lapackpp\blas1pp.h(217) : error C2039: > 'fabs' : is not a member of 'std' You tried to use the pre-compiled lapackpp-2.4.0-setup.exe with the Microsoft Visual C++-Compiler vc6? This will not work. The pre-compiled package is only suitable for the mingw32/gcc compiler. As Lapack++ is a C++ library, you can use a DLL only with exactly the same compiler as you use for the application. So this won't work anyway. The only alternative would be to try to compile lapack++ from its source code with the vc6 compiler. However, I have never done this and I believe this requires a lot of work. In other words, on windows you can use lapack++ only for the gcc compiler. Regards, Christian |