2009/6/20 Harry van der Wolf <[email protected]>: > > > 2009/6/17 Bruno Postle <[email protected]> >> >> -----BEGIN PGP SIGNED MESSAGE----- >> Hash: SHA1 >> >> A hugin-0.8.0_rc4 (release candidate 4) tarball is available here: >> >> >> https://sourceforge.net/project/showfiles.php?group_id=77506&package_id=311429 >> >> This is a release candidate, i.e. The final release may be identical. >> >> Changes since 0.8.0 rc3: >> >> >> * LAPACK is disabled by default. If you want to experiment then >> enable it by running cmake with -DENABLE_LAPACK=YES > > LAPACK is not fully disabled. In src/foreign/levmar/lm.h, the following line > still can be found: > > //#undef HAVE_LAPACK // uncomment this to force not using LAPACK > > It breaks mac compilation so I disabled it myself, like > #undef HAVE_LAPACK // uncomment this to force not using LAPACK > > As I don't know what the working on other platforms is, I did not yet > commit to trunk. > > Should I commit or not? > > Harry > > > > > >
Hi Harry, have you used clean build or you used the directory from previous builds (especially with LAPACK enabled)? AFAIK there are only two possibilities to define HAVE_LAPACK – define it in some header file. And it is not. The second one is to define it on commandline of preprocessor. For example for gcc (and icc and maybe some other compilers) it's defined by using option -DHAVE_LAPACK on command line. This is how LAPACK is handled in Hugin. But if you doesn't use -DENABLE_LAPACK=1 with CMake it shouldn't be defined. Quick grep on sources also reveals that there is GCC_PREPROCESSOR_DEFINITIONS = "HAVE_LAPACK=1"; in ./mac/Hugin.xcodeproj/project.pbxproj. I don't know how that xcode thing works, but I guess it does exactly the same what CMake does when LAPACK is enabled, ie. it tells preprocessor that this macro is defined. So I'd try removing it from XCode project or setting it to 0. Lukas --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "hugin and other free panoramic software" group. A list of frequently asked questions is available at: http://wiki.panotools.org/Hugin_FAQ To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/hugin-ptx -~----------~----~----~----~------~----~------~--~---
