Re: [Qemu-devel] [PATCH v3] configure: Simplify alternate .text segment

2015-01-07 Thread Peter Maydell
On 7 January 2015 at 18:02, Stefan Weil wrote: > Hello, > > this patch which is part of QEMU for more than a year now needs to be fixed > for builds on Mac OS X: > I just saw that the Mac's native linker ld does not support --verbose, but > shows a warning. Cosmetically ugly, but not a show stop

Re: [Qemu-devel] [PATCH v3] configure: Simplify alternate .text segment

2015-01-07 Thread Richard Henderson
On 01/07/2015 10:02 AM, Stefan Weil wrote: > Would it be sufficient to redirect that warning to /dev/null (as it was done > in > the previous code)? Probably. r~

Re: [Qemu-devel] [PATCH v3] configure: Simplify alternate .text segment

2015-01-07 Thread Stefan Weil
Hello, this patch which is part of QEMU for more than a year now needs to be fixed for builds on Mac OS X: I just saw that the Mac's native linker ld does not support --verbose, but shows a warning. Would it be sufficient to redirect that warning to /dev/null (as it was done in the previous

Re: [Qemu-devel] [PATCH v3] configure: Simplify alternate .text segment

2013-07-10 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH v3] configure: Simplify alternate .text segment

2013-07-09 Thread Richard Henderson
Ping 2. On 07/02/2013 08:12 AM, Richard Henderson wrote: > Ping. > > On 06/21/2013 07:10 PM, Richard Henderson wrote: >> For bsd-user and linux-user emulation modes QEMU needs to be linked at an >> alternate .text segment address, so that it's out of the way of the guest >> executable. Instead o

Re: [Qemu-devel] [PATCH v3] configure: Simplify alternate .text segment

2013-07-02 Thread Richard Henderson
Ping. On 06/21/2013 07:10 PM, Richard Henderson wrote: > For bsd-user and linux-user emulation modes QEMU needs to be linked at an > alternate .text segment address, so that it's out of the way of the guest > executable. Instead of including modified linker scripts for each arch, > just set the a

Re: [Qemu-devel] [PATCH v3] configure: Simplify alternate .text segment

2013-06-24 Thread Ed Maste
On 21 June 2013 22:10, Richard Henderson wrote: > For bsd-user and linux-user emulation modes QEMU needs to be linked at an > alternate .text segment address, so that it's out of the way of the guest > executable. Instead of including modified linker scripts for each arch, > just set the address

Re: [Qemu-devel] [PATCH v3] configure: Simplify alternate .text segment

2013-06-23 Thread Peter Maydell
On 23 June 2013 19:20, Richard Henderson wrote: > On 06/22/2013 03:58 AM, Peter Maydell wrote: >> Should we really be putting this in LDFLAGS? That seems >> likely to end up getting accidentally applied in places >> where we don't want it (helper binaries, etc). It seems >> like it would be more r

Re: [Qemu-devel] [PATCH v3] configure: Simplify alternate .text segment

2013-06-23 Thread Richard Henderson
On 06/22/2013 03:58 AM, Peter Maydell wrote: > On 22 June 2013 03:10, Richard Henderson wrote: >> + ldflags="$ldflags $textseg_ldflags" >> fi >> >> echo "LDFLAGS+=$ldflags" >> $config_target_mak > > Should we really be putting this in LDFLAGS? That seems > likely to end up getting accidentally

Re: [Qemu-devel] [PATCH v3] configure: Simplify alternate .text segment

2013-06-22 Thread Peter Maydell
On 22 June 2013 03:10, Richard Henderson wrote: > + ldflags="$ldflags $textseg_ldflags" > fi > > echo "LDFLAGS+=$ldflags" >> $config_target_mak Should we really be putting this in LDFLAGS? That seems likely to end up getting accidentally applied in places where we don't want it (helper binarie