On Thu, Mar 27, 2008 at 12:54 PM, David Bateman <[EMAIL PROTECTED]> wrote: > The problem I had with cygwin is that at the time the example oct-files > were build it wanted the symbols to be resolved, and thus linked against > fixed.oct..... If the OCTAVE_FIXED_API macro doesn't address that issue > then I don't think my fix with work on the cygwin platform and probably > not the mingw platform either. It should work on MSVC as this is > essentially what you were doing with your previous patches... > > How can we force the link of the oct-file to not attempt to resolve the > symbols for the fixed type during the link, but rather at run time?
You can't. What I did with MSVC is to add "-lfixed" flag when linking the oct-files from the examples directory. AFAIK, in Win32, whatever you do, all symbols must be resolved at link-time. Michael. ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace _______________________________________________ Octave-dev mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/octave-dev
