> **** Internal Builder is used for build **** > g++ -IC:/PROGRA~1/MSYS/local/include -O0 -g3 -Wall -c > -fmessage-length=0 -osrc\bla.o ..\src\bla.cpp > g++ -LC:/Program Files/MSYS/local/lib -oblubb.exe src\bla.o > src\bla.o: In function `Z6but_cbP9Fl_WidgetPv':C:/Documents > and > Settings/engineer/workspace/blubb/Debug/../src/bla.cpp:12:
OK, so you have added the PATH to the libs to your build, but I don't see any evidence that you have added the libs themselves to your linker options... I'd expect the linker line to have the libs like this... g++ -LC:/Program Files/MSYS/local/lib -oblubb.exe src\bla.o -lfltk If other fltk libs are needed e.g. libfltk_gl.a for example, that would be added *after* all your file, but *before* libfltk.a like this... g++ -LC:/Program Files/MSYS/local/lib -oblubb.exe src\bla.o -lfltk_gl -lfltk This discussion really needs to be moved to fltk.general - it is not appropriate for the fltk-dev forum. 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-dev mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk-dev
