On Fri, Oct 3, 2008 at 7:07 PM, Benjamin Lindner <[EMAIL PROTECTED]> wrote: > Yes, I can reproduce this error on my w2k machine. strange. > Debugging shows that the call to LoadLibrary() fails with error 998 > which - according to msdn - is invalid memoy access. > I have no immeadiate solution to this - need to work on it. > Btw, __glpk__.oct seems to be the only bult-in .oct file failing on > loading...
In such situation, the debugging/tracing feature of the dependency explorer tool is very useful. >> I have also more general question - what is the difference between >> msvc and mingw versions for Windows? I understand they are built with >> different compilers (and therefore use different compiler also for >> user oct and mex files). The difference makes sense if you want to compile your own oct-files. Depending on the compiler you plan to use, you should use the right octave version. Indeed, there's no common C++ ABI, so for instance you can't use VC++ to link against a C++ library compiled with MinGW (and vice-versa). Due to licensing reasons, MinGW compiler can be bundled with octave, while VC++ cannot. However you can get it for free (as in free beer) from MS web site. Michael. ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Octave-dev mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/octave-dev
