> > This look like a totally separate problem - are you sure your > > installation is correct? > > It doesn't seem to be correct, when I replace "-mwindows" by > "-mconsole", otherwise it creates all libs and FLUID.
I have seen the problem you describe (or something *very* like it) discussed on the forums, and general opioion seemed to be that this was a problem with the installation of the tools. However, it seems your tools do work OK otherwuise, so I do not know... > > Yes, it works, but all the output appears, when closing the app - seems, > there is an additional flush needed for getting printf output to msys. > This would mean to change all the debug code and if I need to do this > already, No, this is just to do with the line buffering of the msys shell - it should suffice to add a single line to the start of your program to make sure that stdout is unbuffered. Or, just add an fflush(stdout); every now and then - and certainly after any "time critical" printfs you add! _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

