> > => i can not compile the programs because of probably linking probem: > > /examples/CubeViewUI.cxx:117: undefined reference to > `Fl_Group::current()' > > ... many messages like this one... > > and when compiling in command line everything works ok
This look very much as if you are passing the wrong libraries to the linker - or possibly you are passing the correct libraries, but in the wrong order (many linkers are sensitive to the order of libraries at link time - in particular, the gcc linker is, which is relevant to your use case.) So - you need to change your linker invocation to match the list of libraries and their ordering that is used in the fltk makeinclude file, and hopefully that will get it working. SELEX Sensors and Airborne Systems Limited Registered Office: Sigma House, Christopher Martin Road, Basildon, Essex SS14 3EL A company registered in England & Wales. Company no. 02426132 ******************************************************************** This email and any attachments are confidential to the intended recipient and may also be privileged. If you are not the intended recipient please delete it from your system and notify the sender. You should not copy it or use it for any purpose nor disclose or distribute its contents to any other person. ******************************************************************** _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

