It will refuse to strip symbols if:
foo.o:func1() references bar.o:func2().
But I need it to.
I suppose there are good reasons why you cannot compile everything into a single .o file for distribution?
> cat master.c #include <foo.c> #include <bar.c> > gcc -o master.o master.c
Now you have a single .o file with everything in it and there are therefore no cross-module references within your library.
Tim
_______________________________________________ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

