From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=53064 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OE520-00031V-7J for qemu-devel@nongnu.org; Mon, 17 May 2010 14:27:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OE51y-0000dd-MA for qemu-devel@nongnu.org; Mon, 17 May 2010 14:27:12 -0400 Received: from are.twiddle.net ([75.149.56.221]:35784) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OE51y-0000dN-33 for qemu-devel@nongnu.org; Mon, 17 May 2010 14:27:10 -0400 Received: from anchor.twiddle.home (anchor.twiddle.home [172.31.0.4]) by are.twiddle.net (Postfix) with ESMTPSA id 888A647 for ; Mon, 17 May 2010 11:27:09 -0700 (PDT) Message-ID: <4BF18A7D.8060108@twiddle.net> Date: Mon, 17 May 2010 11:27:09 -0700 From: Richard Henderson MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH] Fix --enable-user-pie compilation. References: <1272927267-17515-1-git-send-email-rth@twiddle.net> In-Reply-To: <1272927267-17515-1-git-send-email-rth@twiddle.net> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Ping? This options really doesn't work atm... r~ On 05/03/2010 03:54 PM, Richard Henderson wrote: > We forgot to propagate -fpie to the libdis-user directory. > > Signed-off-by: Richard Henderson > --- > configure | 3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > > diff --git a/configure b/configure > index 87942f4..dc11b65 100755 > --- a/configure > +++ b/configure > @@ -2344,6 +2344,9 @@ for d in libdis libdis-user; do > ln -s $source_path/Makefile.dis $d/Makefile > echo > $d/config.mak > done > +if test "$static" = "no" -a "$user_pie" = "yes" ; then > + echo "QEMU_CFLAGS+=-fpie" > libdis-user/config.mak > +fi > > for target in $target_list; do > target_dir="$target"