From: Chandan K. <ch...@to...> - 2002-05-23 04:48:30
|
The Makefile should work fine without the 'rev' since I have commented out the troublesome nbd device driver. Apply this patch to Rules.mk at the toplevel and you should be able to build it alright. --- Rules.make.old Thu May 23 00:39:17 2002 +++ Rules.make Wed May 22 23:32:05 2002 @@ -95,7 +95,7 @@ $(O_TARGET): $(obj-y) rm -f $@ ifneq "$(strip $(obj-y))" "" - $(LD) $(EXTRA_LDFLAGS) -r -o $@ $(shell rev $(filter $(obj-y), $^)) + $(LD) $(EXTRA_LDFLAGS) -r -o $@ $(filter $(obj-y), $^) else $(AR) rcs $@ endif On Wed, 22 May 2002, Matt Zimmerman wrote: > On Wed, May 22, 2002 at 12:13:17PM -0400, Chandan Kudige wrote: > > > This is because on cygwin, for some bizzaire reason, object files are > > processed in the reverse order, and specifically the initcalls get called > > in the wrong order. > > > > Please make sure that this 'rev' is in the search path before the standard > > rev (I was not aware of the standard rev utility). > > It would be wise to name this utility differently, to prevent confusion with > the BSD rev utility. > > -- > - mdz > > _______________________________________________________________ > > Don't miss the 2002 Sprint PCS Application Developer's Conference > August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm > > _______________________________________________ > User-mode-linux-devel mailing list > Use...@li... > https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel > |