From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48577) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WGSkt-00019E-S9 for qemu-devel@nongnu.org; Thu, 20 Feb 2014 07:29:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WGSkl-0002r2-98 for qemu-devel@nongnu.org; Thu, 20 Feb 2014 07:29:31 -0500 Received: from mail-ea0-x22d.google.com ([2a00:1450:4013:c01::22d]:37816) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WGSkl-0002pY-26 for qemu-devel@nongnu.org; Thu, 20 Feb 2014 07:29:23 -0500 Received: by mail-ea0-f173.google.com with SMTP id d10so865192eaj.18 for ; Thu, 20 Feb 2014 04:29:22 -0800 (PST) Sender: Paolo Bonzini From: Paolo Bonzini Date: Thu, 20 Feb 2014 13:28:56 +0100 Message-Id: <1392899343-5226-6-git-send-email-pbonzini@redhat.com> In-Reply-To: <1392899343-5226-1-git-send-email-pbonzini@redhat.com> References: <1392899343-5226-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PULL 05/12] darwin: do not use -mdynamic-no-pic List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, famz@redhat.com, aliguori@amazon.com While -mdynamic-no-pic can speed up the code somewhat, it is only used on the legacy PowerPC Mac OS X, and I am not sure if anyone is still testing that. Disabling PIC can cause problems when enabling modules, so do not do that. Signed-off-by: Paolo Bonzini Signed-off-by: Fam Zheng Signed-off-by: Paolo Bonzini --- configure | 2 -- 1 file changed, 2 deletions(-) diff --git a/configure b/configure index 1201cc3..c69d4d9 100755 --- a/configure +++ b/configure @@ -518,8 +518,6 @@ Darwin) if [ "$cpu" = "x86_64" ] ; then QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS" LDFLAGS="-arch x86_64 $LDFLAGS" - else - QEMU_CFLAGS="-mdynamic-no-pic $QEMU_CFLAGS" fi cocoa="yes" audio_drv_list="coreaudio" -- 1.8.3.1