On Sun, Mar 2, 2008 at 6:48 AM, Tatsuro MATSUOKA <[EMAIL PROTECTED]> wrote: > Hello > > subject: octgpr-1.1.1 build fails on mingw > > Note of configure > > checking for library containing dtpsv... no > checking for library containing dspr... no > checking for library containing dpotrf... no > checking for library containing dpotrs... no > checking for library containing dpotri... no > checking for library containing dsyev... no >
Do you have BLAS on your system? It is a requirement - the part of BLAS contained in libcruft (if BLAS is missing) does not suffice, because it does not contain dtpsv and dspr. what does mkoctfile -p BLAS_LIBS output? This should be preferred by the configure script. Apart from that, the configure script tries -lgoto -latlas -lblas. > part of Config.log > configure:5051: g77 -o conftest.exe -O3 -funroll-all-loops -mieee-fp -O2 > -funroll-loops conftest.f > -llapack -ltmglib -lblas >&5 > > c:\Programs\MinGW\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: > cannot find -llapack > collect2: ld returned 1 exit status > configure:5057: $? = 1 > configure: failed program was: > | program main > | call dtpsv > | end > > I cannot understand this test because, in my case, the place of liblapack.a > specified by -L/ > > At make > > make[1]: Entering directory > `/local/octave-forge-bundle-20080216/main/octgpr-1.1.1/src' > mkoctfile -o gpr_train.oct gpr_train.o dsdacc.o dwdis2.o dtr2tp.o nllgpr.o > nldgpr.o nl0gpr.o corrf.o > stheta.o dscrot.o dscsev.o dspmid.o dxnrm2.o trstp.o sr1upd.o optdrv.o > get_corrf.o train.o setup.o > -llapack -lblas -llapack -ltmglib -lblas > optdrv.o:optdrv.f:(.data+0x0): undefined reference to `dtrstp_' > collect2: ld returned 1 exit status > make[1]: *** [gpr_train.oct] Error 1 > This is a minor bug in optdrv.f - an external declaration does not match the actual name (for some reason gfortran doesn't mind, which is why I missed this bug). Fixed in SVN now. Thanks for reporting. > > What are wrong with me? > > Regards > > Tatsuro > > -------------------------------------- > Easy + Joy + Powerful = Yahoo! Bookmarks x Toolbar > http://pr.mail.yahoo.co.jp/toolbar/ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Octave-dev mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/octave-dev > -- RNDr. Jaroslav Hajek computing expert Aeronautical Research and Test Institute (VZLU) Prague, Czech Republic url: www.highegg.matfyz.cz ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Octave-dev mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/octave-dev
