From: Joseph B. <jb...@um...> - 2005-09-25 05:41:34
|
Okay, I've moved wxspellchecker and shortcutpanel to Bakefile, but I'm having 1 problem. I can't get the XRC libraries to link in an order that works on my system (SuSE 9.3 with wxGTK-2.6.2). I've changed a generated GNUmakefile line from $(CXX) -o $@ $(WXSPELLCHECKER_DEMO_OBJECTS) $(LDFLAGS) -L../lib $(WX_LIBS) ../lib/libmyspell_lib.a ../lib/libwxspellchecker.a to $(CXX) -o $@ $(WXSPELLCHECKER_DEMO_OBJECTS) $(LDFLAGS) -L../lib $(WX_LIBS) ../lib/libmyspell_lib.a ../lib/libwxspellchecker.a $(WX_LIBS) and this fixed it for me, but I couldn't find a way to get Bakefile to put the $(WX_LIBS) after the libwxspellchecker.a automatically. Any ideas would be appreciated. |