Dear Tariq, > I am trying to install deal.ii 7 on SUSE Linux using the command > > ./configure --disable-shared --with-blas="f77blas -latlas" > --with-lapack LDFLAGS=-L/usr/bmp/atlas-3.8.3.frontend/lib/ > > blas lapack and atlas are all build as static libs. > Configuring fails with the following lines (cf.config.log in the attachment): > > checking for dgbsv_ in -llapack... no > configure: error: LAPACK library lapack not found
What is the message in config.log? There, you can find the error message printed by the test that failed. So you should be able to identify whether there are some missing parameters or something else. Could it be that you need to also specify BLAS libraries for LAPACK (i.e., specify --with-lapack='lapack -lf77blas -atlas'), since some LAPACK functions depend on BLAS? I've never worked with static libs, so I'm not sure whether those functions get in there or not... Best, Martin _______________________________________________ dealii mailing list http://poisson.dealii.org/mailman/listinfo/dealii
