On 11 May 2007, at 20:40, Robert wrote: > Hello, > > I've been having a problem getting a program of mine to compile. > I'm using Dev-Cpp (4.9.9.2) on my XP. To save some unnecessary > typing, here is a link to my post on the Dev-Cpp forums. > > http://sourceforge.net/forum/forum.php? > thread_id=1733147&forum_id=48211 > > Any help would be appreciated. Thanks. (*Note: This is the only > part of the program that currently uses FLTK files)
You have your linker order wrong, from the look of things. Most compilers are sensitive to the order that files are passed at link time - I would suggest that something like this would probably be more successful... ../../lib/libfltk_images.a ../../lib/libfltk_png.a ../../lib/ libfltk_z.a -lfltk -lole32 -luuid -lcomctl32 -lwsock32 -lm ../../ lib/libboost_thread-mgw-mt-1_33_1.lib -mwindows _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

