bug-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: stpcpy?


From: Jeroen Dekkers
Subject: Re: stpcpy?
Date: Tue, 1 Jul 2003 18:38:08 +0200
User-agent: Mutt/1.5.4i

On Tue, Jul 01, 2003 at 11:27:47AM -0400, ddavies@ddavies.net wrote:
> Does anyone else get unresolved refs to stpcpy when building
> oskit/mach from CVS?  I updated yesterday evening.  I get this problem
> when building with or without the entropy device, so I'm not positive
> it's something I did.  I'm building with ide and tulip, ie:
> 
>   make kernel-ide+ethernet_tulip
> 
> or:
> 
>   make kernel-ide+entropy_random+ethernet_tulip

It's because the nm output was changed, on my systems it works with this
patch (my sed skills aren't that great but it works):

Index: Makefile.in
===================================================================
RCS file: /cvsroot/hurd/gnumach/Makefile.in,v
retrieving revision 1.38
diff -u -p -r1.38 Makefile.in
--- Makefile.in 6 Mar 2003 04:06:25 -0000       1.38
+++ Makefile.in 1 Jul 2003 16:33:08 -0000
@@ -296,7 +299,7 @@ kernel.o: $(OSKIT_LIBDIR)/multiboot.o $(
              -Wl,-\( $^ -L$(OSKIT_LIBDIR)/.. $(OSKIT_LIBS) -Wl,-\) -lgcc
 
 %-undef: %.o
-       $(NM) -u $< | sed 's/^_*//' | sort -u > $@
+       $(NM) -u $< | sed 's/         U *//;s/^_*//' | sort -u > $@
 
 kernel-clib: kernel-undef Makefile
        sed -n '$(foreach r,$(clib-routines),/^$r$$/p;)' $< > $@





reply via email to

[Prev in Thread] Current Thread [Next in Thread]