Yuping Liu writes: > I debugged simply used the system(pause), then found some how > the random functions do not wrok well. Then I commented out all stuffs, > and I compiled and linked well. the program runned to the midway again, > crashed. I debugged to find that program run well unitil it meets the > function > s=gsl_multifit_fdfsolver_alloc(T,n,p) , > I don't know why? frustrated :( > I have no problem with gsl_linear_fit library, just dont know why this > one.
If you are using a DLL, try linking to the static version of library instead. The program is crashing when it tries to access static objects in the DLL. -- Brian Gough Network Theory Ltd, Publishing Free Software Manuals --- http://www.network-theory.co.uk/ _______________________________________________ Help-gsl mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-gsl
