On Tuesday 03 June 2008 15:18, Bernhard Fischer wrote: > On Tue, Jun 03, 2008 at 11:36:21AM +0200, Bernd Schmidt wrote: > > There appears to be one additional problem. Sometimes I get the > > following cycle: > > > > [EMAIL PROTECTED] /local/src/uclibc/bernds/uClibc $ make > > make[1]: `conf' is up to date. > > STRIP -X --strip-debug -R .note -R .comment lib/libpthread.a > > AR cr lib/libpthread.a > > yea, that doesn't make sense to me. First create the archive, > then strip it.
I don't think it will work. strip can't operate on .a files. The message is misleading - in reality here strip acts not on lib/libpthread.a but on .o files which will then go into lib/libpthread.a. Run make V=1 and it will be visible. -- vda _______________________________________________ uClibc mailing list [email protected] http://busybox.net/cgi-bin/mailman/listinfo/uclibc
