Hello! I need to link executable as following:
gcc -o out m1.o m2.o --start-group -l1 -l2 --end-group -l3 -l4 I wrote (in real, it's generated by automake, but it is not important): libtool --mode=link g++ -g -Wall -LXXX -o out module.o lib1.la -Wl,--start-group lib2.a lib3.la lib4.a -Wl,--end-group lib5.la -lxxx But libtool calls g++ as following: g++ -g -Wall -o out module.o -Wl,--start-group -Wl,--end-group -LXXX lib1.la lib... How I can to move options --start-group/--end-group in right place? Thanks. -- Best regards, Alexandr Nozdrin _______________________________________________ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool