Ubuntu 10.04 error copile elmer

Clearly defined bug reports and their fixes
Post Reply
buldi
Posts: 2
Joined: 03 Feb 2011, 22:35

Ubuntu 10.04 error copile elmer

Post by buldi »

Code: Select all

gfortran -O -fPIC -I. -Ibinio -c GeneralUtils.f90
GeneralUtils.f90:1212.30:

      Matrix % UMFPack_Numeric = 0
                              1
Error: 'umfpack_numeric' at (1) is not a member of the 'matrix_t' structure
? ? ?

Linux -> Ubuntu 10.04 code in svn

Where is fortran function 'UMFPack_Numeric' ?
Juha
Site Admin
Posts: 357
Joined: 21 Aug 2009, 15:11

Re: Ubuntu 10.04 error copile elmer

Post by Juha »

Hi,

the GeneralUtils.src is missing

#ifdef HAVE_UMFPACK
...
#endif HAVE_UMFPAC
for that member initialization. I've commited the change to SVN.

That said, something seems to have failed in your compilation / configuration
as the Umfpack sources are included within the elmer sources and the
HAVE_UMFPACK preprocessor symbol should have been defined in the fem/config.h
anyway.

You could have a look at the fem/config.log file and search for umfpack to get a hint of
what is going wrong?!?

Regards, Juha
buldi
Posts: 2
Joined: 03 Feb 2011, 22:35

Re: Ubuntu 10.04 error copile elmer

Post by buldi »

Hi

thanks helped !!!! :D :D :D
Post Reply