Re: [Xen-devel] [PATCH 3/3] mini-os: sort objects in binary archives

2015-03-11 Thread Ian Campbell
On Thu, 2015-02-05 at 01:22 +0100, Samuel Thibault wrote: > Olaf Hering, le Tue 03 Feb 2015 12:45:37 +0100, a écrit : > > When building stubdom the mini-os objects are also linked into the > > binary. Unfortunately the linker will place them in the order found in > > the archive. Since this order i

Re: [Xen-devel] [PATCH 3/3] mini-os: sort objects in binary archives

2015-02-27 Thread Ian Campbell
On Wed, 2015-02-11 at 11:37 +, Wei Liu wrote: > Otherwise we can commence splitting off and then apply this patch to the > split-off mini-os tree. mini-os has just been split off, minus this patch. I intend to let the push gate process that split (hopefully the gate will pass over the w/e) an

Re: [Xen-devel] [PATCH 3/3] mini-os: sort objects in binary archives

2015-02-16 Thread Olaf Hering
On Thu, Feb 05, Ian Campbell wrote: > On Tue, 2015-02-03 at 12:45 +0100, Olaf Hering wrote: > > When building stubdom the mini-os objects are also linked into the > > binary. Unfortunately the linker will place them in the order found in > > the archive. Since this order is random the resulting st

Re: [Xen-devel] [PATCH 3/3] mini-os: sort objects in binary archives

2015-02-11 Thread Wei Liu
On Tue, Feb 03, 2015 at 01:28:54PM +0100, Olaf Hering wrote: > On Tue, Feb 03, Olaf Hering wrote: > > > +++ b/extras/mini-os/Makefile > > > -LWO:= $(patsubst %.c,%.o,$(LWC)) > > +LWO:= $(patsubst %.c,%.o,$(LWC) > > Somehow this brace disappeared. Should I resend or can this be ad

Re: [Xen-devel] [PATCH 3/3] mini-os: sort objects in binary archives

2015-02-05 Thread Ian Campbell
On Tue, 2015-02-03 at 12:45 +0100, Olaf Hering wrote: > When building stubdom the mini-os objects are also linked into the > binary. Unfortunately the linker will place them in the order found in > the archive. Since this order is random the resulting stubdom binary > differs when it was built from

Re: [Xen-devel] [PATCH 3/3] mini-os: sort objects in binary archives

2015-02-04 Thread Samuel Thibault
Olaf Hering, le Tue 03 Feb 2015 12:45:37 +0100, a écrit : > When building stubdom the mini-os objects are also linked into the > binary. Unfortunately the linker will place them in the order found in > the archive. Since this order is random the resulting stubdom binary > differs when it was built

Re: [Xen-devel] [PATCH 3/3] mini-os: sort objects in binary archives

2015-02-03 Thread Jan Beulich
>>> On 03.02.15 at 12:45, wrote: > --- a/extras/mini-os/Makefile > +++ b/extras/mini-os/Makefile > @@ -148,9 +148,9 @@ arch_lib: > > ifeq ($(CONFIG_LWIP),y) > # lwIP library > -LWC := $(shell find $(LWIPDIR)/src -type f -name '*.c') > +LWC := $(sort $(shell find $(LWIPDIR)/src -type f -name

Re: [Xen-devel] [PATCH 3/3] mini-os: sort objects in binary archives

2015-02-03 Thread Olaf Hering
On Tue, Feb 03, Olaf Hering wrote: > +++ b/extras/mini-os/Makefile > -LWO := $(patsubst %.c,%.o,$(LWC)) > +LWO := $(patsubst %.c,%.o,$(LWC) Somehow this brace disappeared. Should I resend or can this be adjusted when the patch gets merged? Olaf ___