Makefile: ... /usr/local/lib/libosgProducer.a \ /usr/local/lib/libProducer.a \ ...
is Work ) P.S. $(LD) ....... -lA -lB -lA This process means that if library 'A' uses symbols in library 'B', then library 'A' has to appear on the link command before library 'B'. Otherwise, symbols might be missing - the linker never turns back to libraries it has already processed. If library 'B' also uses symbols found in library 'A' - then the only way to assure successful linking is to mention library 'A' on the link command again after library 'B', like this: $(LD) ....... -lA -lB -lA _______________________________________________ osg-users mailing list [email protected] http://openscenegraph.net/mailman/listinfo/osg-users http://www.openscenegraph.org/
