Re: [Xen-devel] [PATCH 2/5] gcov: collect more sections to constructor list

2016-09-05 Thread Julien Grall
Hi Wei, On 02/09/2016 12:47, Wei Liu wrote: The version of gcc (4.9.2) I use put constructors into .init_array* section(s). Collect those sections into constructor list as well. Modify both arm and x86 scripts to keep them in sync. With Jan's comment handled: Acked-by: Julien Grall

Re: [Xen-devel] [PATCH 2/5] gcov: collect more sections to constructor list

2016-09-02 Thread Wei Liu
On Fri, Sep 02, 2016 at 05:58:43AM -0600, Jan Beulich wrote: > >>> On 02.09.16 at 13:47, wrote: > > --- a/xen/arch/x86/xen.lds.S > > +++ b/xen/arch/x86/xen.lds.S > > @@ -205,6 +205,8 @@ SECTIONS > > . = ALIGN(8); > > __ctors_start = .; > > *(.ctors) >

Re: [Xen-devel] [PATCH 2/5] gcov: collect more sections to constructor list

2016-09-02 Thread Jan Beulich
>>> On 02.09.16 at 13:47, wrote: > --- a/xen/arch/x86/xen.lds.S > +++ b/xen/arch/x86/xen.lds.S > @@ -205,6 +205,8 @@ SECTIONS > . = ALIGN(8); > __ctors_start = .; > *(.ctors) > + *(SORT(.init_array.*)) > + *(.init_array) >